/* Hamburger Navigation Toggle */
.navbar-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 10002;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.navbar-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2d6a4f;
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  color: #333;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

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

.logo img {
  height: 62px;
  width: 62px;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #007f5f;
}

.nav-links li a.active {
  color: #007f5f;
  position: relative;
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #007f5f;
  border-radius: 2px;
}

.hero {
  height: 100vh;
  width: 100%;
  padding-top: 48px;
  position: relative;
  background: url('../images/home.jpeg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}


.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 71, 45, 0.65);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-content .subheading,
.hero-content .description {
  color: #f0f0f0;
}

.hero-content .subheading {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.hero-content .description {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 10px;
}

.btn {
  padding: 14px 24px;
  border: none;
  text-decoration: none;
  font-size: 1.08rem;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  transition: transform 0.2s;
  min-width: 120px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    padding: 13px 0;
    margin-bottom: 10px;
  }
  .btn.btn-secondary {
    margin-left: 0 !important;
  }
  .form-group {
    width: 100%;
    box-sizing: border-box;
  }
}

.btn.green { background-color: #2d6a4f; }
.btn.brown { background-color: #8d6e63; }

.btn:hover { transform: scale(1.05); }

.bouncing-cylinder {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -15px); }
}

/* About Section */
.about {
  padding: 160px 10px 180px 10px;
  background-color: #fff;
  text-align: center;
  margin-top: 0;
}

.about .section-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.about .section-subtext {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.about-text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #5d6c7b;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.stat-box {
  flex: 1;
  padding: 25px 20px;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
}

.stat-box.blue { 
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}
.stat-box.pink { 
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
  color: #c2185b;
}

@media (min-width: 700px) and (max-width: 1024px) {
  .about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
}
/* Mission & Vision Section */
.mission-vision {
  width: 100%;
  min-height: 600px;
  padding: 80px 0 80px 0;
  margin-top: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  box-sizing: border-box;
}

.mission-vision::before {
  content: none;
}

.mission-vision .section-heading {
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
  color: #2c3e50;
  position: relative;
}

.mv-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-box {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 520px;
  flex: 1 1 450px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mv-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2d6a4f, #24513d);
}

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

.mv-box:nth-child(1)::before {
  background: linear-gradient(90deg, #f1f1f1, #f1f1f1);
}

.mv-box:nth-child(2)::before {
  background: linear-gradient(90deg, #f1f1f1, #f1f1f1);
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.mv-box:hover .icon-circle {
  transform: scale(1.1);
}

.mv-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.mv-box:nth-child(2) h3 { 
  color: #6d4c41; 
}

.mv-box p {
  font-size: 1.1rem;
  color: #5d6c7b;
  margin: 0;
  line-height: 1.8;
  text-align: center;
}

/* --- Services Section --- */
.services-section {
  background: #f8f9fa;
  padding: 80px 20px 100px 20px;
  text-align: center;
  color: #222;
}

.services-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  max-width: 1200px;
  margin: 0 auto 15px auto;
}

.services-subheading {
  font-size: 1.2rem;
  color: #5d6c7b;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4f5f5, #fbfcfb);
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  min-height: 60px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.service-card p {
  font-size: 1rem;
  color: #5d6c7b;
  margin-bottom: 20px;
  line-height: 1.7;
  min-height: 70px;
  display: flex;
  align-items: flex-start;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card ul li {
  font-size: 1rem;
  color: #5d6c7b;
  margin-bottom: 8px;
  font-weight: 500;
}

.service-btn {
  background: linear-gradient(135deg, #2d6a4f, #24513d);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: stretch;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.service-btn:hover {
  background: linear-gradient(135deg, #24513d, #1e3e2f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

/* Services Section Mobile Responsive */
@media (max-width: 1030px) {
  .services-section {
    padding: 60px 20px;
  }
  
  .services-heading {
    font-size: 1.8rem;
  }
  
  .services-subheading {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .service-cards {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
    width: 100%;
  }
  
  .service-card img {
    height: 500px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    min-height: auto;
  }
  
  .service-card p {
    min-height: auto;
  }
  
  .service-card ul {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 40px 15px;
  }
  
  .services-heading {
    font-size: 1.6rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card img {
    height: 250px;
  }
}

/* --- Farming Tips Section --- */
.farming-tips {
  background-color: #f8f8f5;
  padding: 60px 20px;
  text-align: center;
}

.farming-tips h2 {
  font-size: 2rem;
  color: #222;
  font-weight: bold;
  margin-bottom: 40px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.tip-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
  width: 240px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.tip-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.tip-box h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2d6a4f;
}

.tip-box p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

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




/* --- Contact Section --- */
.contact-section {
  background: #f7f8f6;
  padding: 60px 10px 70px 0;
  text-align: center;
  margin-top: 60px;
  
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 38px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 320px;
  text-align: left;
  min-width: 260px;
  margin-bottom: 30px;
}

.contact-info h3 {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  background: #2d6a4f;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 7px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-info-item strong {
  font-size: 1rem;
  color: #222;
}

.contact-social {
  margin-top: 18px;
}

.contact-social span {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

.social-icon {
  display: inline-block;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.whatsapp-text {
  margin-top: 10px;
  margin-left: 0;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.contact-form {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 32px 28px 28px 28px;
  min-width: 300px;
  text-align: left;
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 0;
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
  background: #f7f8f6;
  outline: none;
  transition: border 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border: 1.5px solid #2d6a4f;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-btn {
  width: 100%;
  background: #2d6a4f;
  color: #fff;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 13px 0;
  border-radius: 6px;
  border: none;
  margin-top: 8px;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}

.contact-btn:hover {
  background: #24513d;
}

.contact-btn:active {
  transform: translateY(1px);
}

.contact-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}




/* Section background & wrapper */
.how-hear-section {
  background: #f8fafd;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.how-hear-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  align-items: center;
}

/* Left text column */
.how-hear-text {
  flex: 1;
}

.how-hear-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.how-hear-text p {
  font-size: 1rem;
  color: #6c7a89;
  line-height: 1.6;
}

/* Right card column */
.how-hear-card {
  flex: 1;
  background: #fff;
  border: 1.5px solid #e0e6ed;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
  padding: 32px;
}

.how-hear-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 4px;
}

.how-hear-card p {
  font-size: 0.95rem;
  color: #6c7a89;
  margin-bottom: 20px;
}

/* Form styling */
.how-hear-card form label {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: #f4f7fa;
  border-radius: 8px;
  font-size: 1rem;
  color: #34495e;
  cursor: pointer;
}

.how-hear-card input[type="radio"] {
  accent-color: #2d6a4f; /* green */
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.how-hear-card input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 7px;
  font-size: 1rem;
  margin-top: 8px;
}

/* Submit button */
.how-hear-card button {
  width: 100%;
  background: #2d6a4f;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.how-hear-card button:hover {
  background: #256844;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .how-hear-container {
    flex-direction: column;
    text-align: center;
  }

  .how-hear-card {
    width: 100%;
    margin-top: 20px;
  }
}





/* --- Map Section --- */
.map-section {
  background: #f7f7f6;
  padding: 40px 0 80px 0;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.map-card {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding: 28px 0 38px 0;
  text-align: center;
}

/* Responsive map for pagomo.html */
.pagomo-map-container {
  height: 400px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
   background: #fff;
   min-width: 0;
}

.pagomo-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
   min-width: 0;
}

.pagomo-visit-section, .pagomo-visit-parent {
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  min-width: 0;
}

@media (max-width: 768px) {
  .pagomo-map-container {
    height: 250px;
    min-height: 180px;
    border-radius: 8px;
    max-width: 100vw;
  }
}

@media (max-width: 480px) {
  .pagomo-map-container {
    height: 180px;
    min-height: 120px;
    border-radius: 6px;
    max-width: 100vw;
  }
}
.map-title {
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 22px;
}

.map-placeholder {
  background: #f4f4f2;
  border-radius: 9px;
  min-height: 200px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 10px 28px 10px;
}

.map-icon {
  font-size: 2.7rem;
  color: #42594a;
  margin-bottom: 12px;
}

.map-coming-soon {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 4px;
}

.map-location {
  font-size: 0.98rem;
  color: #888;
}

/* --- Footer Section --- */
.footer-section {
  background: #292522;
  color: #e0e0e0;
  padding: 48px 0 0 0;
  font-size: 1rem;
  margin-top: 60px;
}

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

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

.footer-col.company h3 {
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-col.company p {
  font-size: 0.98rem;
  margin-bottom: 18px;
  color: #d0d0d0;
}

.footer-social a {
  display: inline-block;
  color: #bdbdbd;
  font-size: 1.25rem;
  margin-right: 12px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-col.links h4,
.footer-col.contact h4 {
  font-size: 1.08rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-col.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col.links ul li {
  margin-bottom: 8px;
}

.footer-col.links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col.links ul li a:hover {
  color: #a97a50;
}

.footer-col.contact p {
  font-size: 0.98rem;
  color: #d0d0d0;
  margin-bottom: 0;
}

/* Make footer phone numbers white on mobile */
@media (max-width: 768px) {
  .footer-col.contact p {
    color: #fff !important;
  }
}

.footer-divider {
  border: none;
  margin: 0 auto 18px auto;
  max-width: 1100px;
}

.footer-bottom {
  text-align: center;
  color: #bdbdbd;
  font-size: 0.97rem;
  padding-bottom: 18px;
}

@media (max-width: 1024px) {
  .footer-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-content {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-col.company {
    text-align: center;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
  }
}

/* --- Booking Form Section --- */
.masterclass-booking {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background: #fafaf9;
}

.booking-form {
  background: #fafaf9;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 36px 32px 28px 32px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  outline: none;
  transition: border 0.2s;
}

.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border: 1.5px solid #2d6a4f;
}

.booking-btn {
  width: 100%;
  background: #42594a;
  color: #fff;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 13px 0;
  border-radius: 6px;
  border: none;
  margin-top: 8px;
  transition: background 0.2s;
  cursor: pointer;
}

.booking-btn:hover {
  background: #2d6a4f;
}

.booking-note {
  margin-top: 20px;
  font-size: 1rem;
  color: #222;
}

/* Optional Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

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

/*Masterclass Section */

.hero-masterclass {
  position: relative;
  background: url('../images/home.jpeg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-masterclass .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(156, 120, 83, 0.4); /* light brown overlay */
  z-index: 1;
}

.hero-masterclass .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 140px;
}

.hero-masterclass h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-masterclass p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 800px;
}

.hero-masterclass .btn.green {
  background-color: #2d6a4f;
  padding: 16px 32px;
  font-size: 1.2rem;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.hero-masterclass .btn.green:hover {
  background-color: #24513d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}
.about-masterclass {
  padding: 80px 40px;
  background-color: #f9f9f9;
}

.about-masterclass h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: #222;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.about-content .text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-content .text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #111;
}

.about-content .text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-content .image {
  flex: 1;
  min-width: 300px;
  text-align: right;
}

.about-content .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-content .text {
    text-align: center;
  }

  .about-content .image {
    text-align: center;
  }

  .about-content .image img {
    max-width: 90%;
  }
}

/*key features section */
.key-features {
  padding: 80px 40px;
  background-color: #f6f6f6;
  text-align: center;
}

.key-features h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #222;
}

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

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.feature-card .icon {
  background-color: #2d6a4f;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon img {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #111;
}

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

/*benefits section */
.benefits {
  text-align: center;
  padding: 60px 20px;
}

.benefits h1 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #2a2a2a;
}

/* Removed duplicate date-box style - using the harmonized version below */

.fact-box {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.fact-box h2 {
  font-size: 1.3em;
  color: #2d6a4f;
  margin-bottom: 15px;
  font-weight: bold;
}

.fact-box p {
  color: #333;
  font-size: 0.95em;
}

.description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1em;
  color: #444;
}

/* schedule section */

.schedule-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
}

.schedule-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  border-left: 5px solid #2d6a4f;
  transition: transform 0.3s, box-shadow 0.3s;
}

.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.schedule-header {
  background-color: #2d6a4f;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
  font-size: 1.2rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table td {
  padding: 20px;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.time-col {
  width: 120px;
  font-weight: bold;
  color: #2d6a4f;
  white-space: nowrap;
}

.session-title {
  font-weight: bold;
  margin-bottom: 6px;
}

.session-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Booking Section */
/* Booking Section Styles */
.booking-section {
  background: #f8f9fa;
  color: #333;
  padding: 60px 20px;
  font-size: 16px;
}

.booking-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.booking-container h2 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.booking-container .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.pricing-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-left: 5px solid #2d6a4f;
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.registration-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-left: 5px solid #2d6a4f;
  text-align: left;
}

.pricing-box h3 {
  color: #2d6a4f;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d6a4f;
  margin-bottom: 15px;
}

/* --- Masterclass Section Harmonization --- */

/* Apply consistent styling to masterclass sections */
.about-masterclass,
.key-features,
.benefits,
.schedule-section,
.booking-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

/* Consistent containers */
.about-masterclass,
.key-features,
.benefits,
.schedule-section,
.booking-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section headings consistency */
.about-masterclass h2,
.key-features h2,
.benefits h1,
.schedule-section h1,
.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Feature cards with consistent styling */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    border-left: 5px solid #2d6a4f;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.feature-card .icon {
    background-color: #2d6a4f;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #5d6c7b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Schedule cards with consistent styling */
.schedule-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    border-left: 5px solid #2d6a4f;
    transition: transform 0.3s, box-shadow 0.3s;
}

.schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.schedule-header {
    background-color: #2d6a4f;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 20px 0;
    font-size: 1.2rem;
}

/* Benefits section cards */
.fact-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-left: 5px solid #2d6a4f;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.fact-box h2 {
    color: #2d6a4f;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.fact-box p {
    color: #5d6c7b;
    font-size: 1rem;
    line-height: 1.7;
}

.date-box {
    display: inline-block;
    background: linear-gradient(135deg, #2d6a4f, #24513d);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

/* Booking section styling */
.pricing-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-left: 5px solid #2d6a4f;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.registration-form {
    background: rgba(45, 106, 79, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.registration-form h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.registration-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 15px;
    box-sizing: border-box;
}

.registration-form textarea {
    resize: vertical;
}

.book-button {
    background-color: #2d6a4f;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
}

.book-button:hover {
    background-color: #24513d;
}

.small-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.pricing-box h3 {
    color: #2d6a4f;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d6a4f;
    margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-masterclass h2,
    .key-features h2,
    .benefits h1,
    .schedule-section h1,
    .booking-section h2 {
        font-size: 2rem;
    }
}

/* Outgrower Criteria Section */
.outgrower-criteria {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.outgrower-criteria h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.outgrower-criteria > p {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.criteria-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid #2d6a4f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.criteria-card .number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #2d6a4f, #24513d);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.criteria-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.criteria-card p {
    color: #5d6c7b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .criteria-card {
        padding: 25px 20px;
    }
    
    .outgrower-criteria h2 {
        font-size: 2rem;
    }
}

/* Outgrower Contact Section */
.outgrower-contact {
    background-color: #fefffe;
    padding: 80px 20px;
    text-align: center;
}

.outgrower-contact h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.outgrower-contact > p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.contact-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card p {
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .outgrower-contact h2 {
        font-size: 2rem;
    }
}

/* --- Harmonized Card Section Styles --- */

/* General Section Backgrounds */
.rabbit-breeds, .outgrower-program, .buy-back, .delivery-schedule {
    background: #f8f9fa;
    padding: 80px 20px;
}

/* Section Containers */
.rabbit-breeds .container,
.outgrower-program .container,
.buy-back,
.delivery-schedule {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Headings */
.rabbit-breeds h2,
.outgrower-program h2,
.buy-back h2,
.delivery-schedule {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.rabbit-breeds .subtitle,
.outgrower-program .subtitle,
.buy-back > p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Card Grids */
.breed-cards,
.program-grid,
.buy-back-content,
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Increased from 280px for better image display */
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

/* Breed Card Image Styling */
.breed-card .image-wrapper {
    width: 100%;
    height: 350px; /* Increased from 280px for even better image display */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breed-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px; /* Slight rounding for better visual appeal */
}

.breed-card:hover .image-wrapper img {
    transform: scale(1.05);
}

/* Card Content Spacing */
.breed-card .card-content {
    padding: 0;
}

.breed-card .card-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.breed-card .card-content ul {
    margin: 15px 0 0 0;
    padding-left: 0;
    list-style: none;
}

.breed-card .card-content li {
    padding: 4px 0;
    color: #5d6c7b;
    font-size: 0.9rem;
}

/* Card Styles */
.breed-card,
.program-card,
.conditions,
.pricing-box,
.schedule-grid > div {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px 20px; /* Reduced horizontal padding for narrower look */
    border-left: 5px solid #2d6a4f;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    min-height: 220px;
    text-align: left;
}

/* === CAGES PAGE STYLES === */

/* Cages Hero Section */
.cages-hero {
  position: relative;
  background: url('../images/equip.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 60px;
}

.cages-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 71, 45, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.cages-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.cages-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cages-hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Equipment Section */
.equipment-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

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

.equipment-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.equipment-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.equipment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.equipment-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.equipment-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 25px;
  margin-top: 0;
  font-weight: 600;
}

.equipment-text p {
  font-size: 1rem;
  color: #5d6c7b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.highlight-box {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2d6a4f;
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.highlight-box .icon {
  background: #2d6a4f;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-box .icon svg {
  stroke: white;
}

.highlight-text strong {
  color: #2c3e50;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.highlight-text p {
  color: #5d6c7b;
  margin: 0;
  font-size: 0.95rem;
}

.equipment-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Cage Section */
.cage-section {
  background: white;
  padding: 80px 20px;
}

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

.cage-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cage-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

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

.cage-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid #2d6a4f;
}

.cage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.cage-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.cage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cage-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cage-tag.breeders {
  background: #2d6a4f;
  color: white;
}

.cage-tag.weaners {
  background: #2196F3;
  color: white;
}

.cage-body {
  padding: 30px;
}

.cage-body h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.cage-body p {
  color: #5d6c7b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cage-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.cage-body ul li {
  padding: 8px 0;
  color: #333;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.included {
  background: #e8f5e8;
  color: #2d6a4f;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dimensions {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.dimensions strong {
  color: #2c3e50;
  font-size: 1rem;
  display: block;
  margin-bottom: 15px;
}

.dim-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.dim-boxes > div {
  text-align: center;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.dim-boxes span {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dim-boxes strong {
  font-size: 1.1rem;
  color: #2d6a4f;
  font-weight: bold;
}

.price-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.8rem;
  color: #2d6a4f;
  font-weight: bold;
}

.order-btn {
  background: #2d6a4f;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.order-btn:hover {
  background: #24513d;
  transform: translateY(-2px);
}

/* Delivery Section */
.delivery-section {
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.delivery-content {
  max-width: 1000px;
  margin: 0 auto;
}

.delivery-icon {
  margin: 0 auto 30px;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.delivery-section h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: bold;
}

.delivery-section > .container > .delivery-content > p {
  font-size: 1.1rem;
  color: #5d6c7b;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.delivery-feature {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2d6a4f;
  transition: transform 0.3s;
}

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

.delivery-feature h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.delivery-feature p {
  color: #5d6c7b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cages-hero h1 {
    font-size: 2.5rem;
  }
  
  .equipment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cage-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .delivery-features {
    grid-template-columns: 1fr;
  }
  
  .dim-boxes {
    grid-template-columns: 1fr;
  }
  
  .price-order {
    flex-direction: column;
    gap: 15px;
  }
}

/* Breeding Hero Section */
.breeding-stock-section {
  height: 100vh;
  background: url('../images/home.jpeg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.breeding-stock-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 71, 45, 0.65);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.breeding-stock-section .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.breeding-stock-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breeding-stock-section p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.breeding-stock-section .button {
  background-color: #2d6a4f;
  color: white;
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
  display: inline-block;
}

.breeding-stock-section .button:hover {
  background-color: #24513d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}


/* Responsive fix for contact/info box on mobile */
@media (max-width: 600px) {
  .contact-info-box, .get-in-touch, .contact-section, .contact-box {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    width: 95% !important;
    max-width: 400px !important;
    box-sizing: border-box !important;
    display: block !important;
  }
 

}

/* --- Footer Responsive Styles --- */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 20px 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
    margin: 0 auto 24px auto;
  }
  
  .footer-col {
    flex: 1 1 auto;
    min-width: auto;
    width: 100%;
  }
  
  .footer-col.links ul {
    padding-left: 0 !important;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 30px 15px 0 15px;
  }
  
  .footer-content {
    gap: 25px;
    padding: 0 5px;
  }
  
  .footer-col.company h3 {
    font-size: 1.1rem;
  }
  
  .footer-col.company p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .footer-col.links h4,
  .footer-col.contact h4 {
    font-size: 1rem;
  }
  
  .footer-col.contact p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-divider {
    margin: 0 15px 15px 15px;
  }
  
  .footer-bottom {
    padding: 0 15px 15px 15px;
    font-size: 0.9rem;
  }
}

/* --- Navbar Responsive Styles --- */
@media (max-width: 768px) {
  .navbar {
    padding: 0 15px;
    height: 55px;
  }
  
  .logo img {
    height: 45px;
    width: 45px;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 8px;
    height: 50px;
  }
  
  .logo img {
    height: 38px;
    width: 38px;
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .nav-links li a {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 6px;
  }
  
  .nav-links li a.active::after {
    bottom: -6px;
    height: 2px;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding: 0 1px;
  }
  
  .logo {
    margin-right: 2px;
  }
  
  .logo img {
    height: 32px;
    width: 32px;
  }
  
  .nav-links {
    gap: 1px;
  }
  
  .nav-links li a {
    font-size: 0.65rem;
    padding: 2px 1px;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 320px) {
  .navbar {
    padding: 0 1px;
    height: 48px;
  }
  
  .logo {
    margin-right: 1px;
  }
  
  .logo img {
    height: 28px;
    width: 28px;
  }
  
  .nav-links {
    gap: 1px;
    flex: 1;
  }
  
  .nav-links li {
    flex: 1;
    min-width: 0;
  }
  
  .nav-links li a {
    font-size: 0.55rem;
    padding: 1px;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    display: block;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links li a.active::after {
    bottom: -2px;
    height: 1.5px;
  }
  
  /* Specific text
  .nav-links li a[href*="masterclass"] {
    word-spacing: -0.1em;
  }
  
  .nav-links li a[href*="cages"] {
    word-spacing: -0.1em;
  }
}

/* --- Contact Section Responsive Styles --- */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 20px 60px 20px;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 35px;
    padding: 0 10px;
  }
  
  .contact-info {
    margin-bottom: 20px;
    padding: 0 5px;
  }
  
  .contact-form {
    padding: 25px 20px;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-form {
    min-width: 0;
    width: 100%;
    padding: 24px 8px 20px 8px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px 50px 15px;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
    padding: 0 5px;
  }
  
  .contact-content {
    padding: 0 5px;
    gap: 30px;
  }
  
  .contact-info {
    padding: 0;
  }
  
  .contact-info h3 {
    font-size: 1.1rem;
  }
  
  .contact-info-item {
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .contact-form h3 {
    font-size: 1.05rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/* === PAGOMO PAGE RESPONSONSIVE STYLES === */
@media (max-width: 1024px) {
  .pagomo-order-grid {
    grid-template-columns: 1fr 320px !important;
    gap: 25px !important;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 40px 0 !important;
  }
  
  .menu-section h2 {
    font-size: 2rem !important;
  }
  
  .pagomo-order-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}


/* ========================================================
   FULL-SCREEN MOBILE NAVIGATION OVERLAY (< 992px)
   ======================================================== */
@media (max-width: 992px) {
  .navbar {
    padding: 0 18px !important;
    height: 60px !important;
  }

  .navbar-hamburger {
    display: flex !important;
    position: relative !important;
    z-index: 10002 !important;
  }

  /* When open or active, animate to X icon */
  .navbar-hamburger.active span:nth-child(1),
  .navbar:has(.nav-links.open) .navbar-hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background: #ffffff !important;
  }
  
  .navbar-hamburger.active span:nth-child(2),
  .navbar:has(.nav-links.open) .navbar-hamburger span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  
  .navbar-hamburger.active span:nth-child(3),
  .navbar:has(.nav-links.open) .navbar-hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background: #ffffff !important;
  }

  /* Desktop nav hidden by default on mobile */
  .nav-links {
    display: none !important;
  }

  /* Full Screen Overlay */
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: radial-gradient(circle at center, #1b4332 0%, #081c15 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px !important;
    z-index: 10000 !important;
    padding: 60px 20px 40px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: fadeInMobileNav 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  }

  .nav-links.open li {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    flex: none !important;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpMobileLink 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }

  .nav-links.open li:nth-child(1) { animation-delay: 0.05s !important; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.1s !important; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.15s !important; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.2s !important; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.25s !important; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.3s !important; }

  .nav-links.open li a {
    display: block !important;
    font-size: 1.45rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .nav-links.open li a:hover,
  .nav-links.open li a:active,
  .nav-links.open li a.active {
    color: #95d5b2 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.05) !important;
    text-shadow: 0 0 15px rgba(149, 213, 178, 0.6) !important;
  }

  .nav-links.open li a.active::after {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .navbar-hamburger {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    min-width: unset;
    padding: 0;
  }
}

@keyframes fadeInMobileNav {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpMobileLink {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Prevent telephone numbers from appearing as blue links on mobile devices */
a[href^="tel:"] {
  color: inherit !important;
  text-decoration: none !important;
}

/* ========================================================
   RESPONSIVE EQUIPMENT & ACCESSORIES PUBLIC CARDS
   ======================================================== */
.accessories-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.accessory-public-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accessory-public-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.accessory-card-image {
  width: 100%;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.accessory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.accessory-public-card:hover .accessory-card-image img {
  transform: scale(1.04);
}

.accessory-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.accessory-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.accessory-card-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 18px 0;
  flex: 1;
}

.accessory-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.accessory-card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #2d6a4f;
}

.accessory-card-btn {
  background: #2d6a4f;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.accessory-card-btn:hover {
  background: #1b4332;
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .accessories-grid-responsive {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .accessory-card-image {
    height: 180px;
  }
}
