        /* Responsive Base Styles */
    :root {
      --primary-color: #6db8e1;
      --secondary-color: #4caf50;
      --text-color: #333;
      --light-bg: #f8f9fa;
      --border-radius: 8px;
      --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
    }

    /* Popup Form Styles */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding: 15px;
    }

    .popup-form {
      background: white;
      padding: 25px;
      border-radius: var(--border-radius);
      width: 100%;
      max-width: 500px;
      position: relative;
      box-shadow: var(--box-shadow);
      max-height: 90vh;
      overflow-y: auto;
    }

    .popup-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #666;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .popup-close:hover {
      color: #000;
    }

    .popup-form h3 {
      margin-bottom: 15px;
      color: var(--primary-color);
      font-size: 1.5rem;
    }

    .popup-form .form-group {
      margin-bottom: 15px;
    }

    .popup-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }

    .popup-form input,
    .popup-form select,
    .popup-form textarea,
    textarea{
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px; /* Prevents zoom on iOS */
      transition: var(--transition);
    }

    .popup-form input:focus,
    .popup-form select:focus,
    .popup-form textarea:focus {
      border-color: var(--primary-color);
      outline: none;
      box-shadow: 0 0 0 2px rgba(30, 67, 86, 0.2);
    }

    .popup-form textarea {
      height: 100px;
      resize: vertical;
    }

    .popup-submit {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 14px 20px;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
      font-weight: 500;
      margin-top: 10px;
      transition: var(--transition);
    }

    .popup-submit:hover {
      background-color: #163344;
    }

    .popup-trigger {
      cursor: pointer;
    }
    
    /* Enhanced Search Form Styles */
    .search-container {
      background: white;
      border-radius: var(--border-radius);
      padding: 25px;
      box-shadow: var(--box-shadow);
      margin-bottom: 30px;
    }
    
    .search-header {
      text-align: center;
      margin-bottom: 25px;
    }
    
    .search-header h2 {
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    
    .search-field select,
    .search-field input {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
      transition: var(--transition);
      background-color: white;
    }
    
    .search-field select:focus,
    .search-field input:focus {
      border-color: var(--primary-color);
      outline: none;
      box-shadow: 0 0 0 2px rgba(30, 67, 86, 0.2);
    }
    
    .field-icon {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      pointer-events: none;
    }
    
    
    /* Floating Buttons */
    .floating-btn {
      position: fixed;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      z-index: 1000;
      font-size: 24px;
      color: white;
    }

    .floating-call {
      background: linear-gradient(135deg, #25d366, #128C7E);
      bottom: 150px;
      right: 20px;
    }

    .floating-whatsapp {
      background: linear-gradient(135deg, #25d366, #128C7E);
      bottom: 80px;
      right: 20px;
    }

    /* Hover Effects */
    .floating-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
      color: white;
    }

    /* Pulse Animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    .floating-btn.pulse {
      animation: pulse 2s infinite;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
        bottom: 20px;
      }
      
      .floating-call {
        right: 20px;
        bottom: 150px;
      }
      
      .floating-whatsapp {
        right: 20px;
        bottom: 85px;
      }
    }

    /* Success Notification */
    .success-notification {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #4caf50;
      color: white;
      padding: 15px 20px;
      border-radius: 5px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 10000;
      font-family: Arial, sans-serif;
      display: none;
    }
    
    /* Phone Capture Modal */
    .phone-capture-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10001;
      padding: 15px;
    }
    
    .phone-capture-form {
      background: white;
      padding: 25px;
      border-radius: var(--border-radius);
      width: 100%;
      max-width: 400px;
      position: relative;
      box-shadow: var(--box-shadow);
    }
    
    .phone-capture-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #666;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .phone-capture-close:hover {
      color: #000;
    }
    
    .phone-capture-form h3 {
      margin-bottom: 15px;
      color: var(--primary-color);
      font-size: 1.5rem;
      text-align: center;
    }
    
    .phone-capture-form .form-group {
      margin-bottom: 15px;
    }
    
    .phone-capture-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }
    
    .phone-capture-form input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
      transition: var(--transition);
    }
    
    .phone-capture-form input:focus {
      border-color: var(--primary-color);
      outline: none;
      box-shadow: 0 0 0 2px rgba(30, 67, 86, 0.2);
    }
    
    .phone-capture-submit {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 14px 20px;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
      font-weight: 500;
      margin-top: 10px;
      transition: var(--transition);
    }
    
    .phone-capture-submit:hover {
      background-color: #163344;
    }
       /* Accessibility improvements */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Focus styles for keyboard navigation */
    a:focus, button:focus, input:focus, select:focus, textarea:focus {
      outline: 2px solid var(--primary-color);
      outline-offset: 2px;
    }

    /* Loading states */
    .loading {
      opacity: 0.7;
      pointer-events: none;
    }
/*end header.php*/

/* Location Breadcrumb */
.location-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.breadcrumb-item {
  color: #2c3e50;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #666;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 14px;
}

.trust-badge i {
  color: #28a745;
}

/* Industrial Sidebar */
.industrial-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-form-card,
.features-card,
.contact-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.inquiry-form-card h3,
.features-card h3,
.contact-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.visual-container {
  position: relative;
}

.featured-property {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.featured-property img {
  width: 100%;
  height: auto;
  display: block;
}

.property-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px;
  color: white;
}

.property-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.property-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
}

.overlay-images {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.overlay-img {
  width: 150px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

/* Industrial Section */
.industrial-section {
  background: #f8f9fa;
}

.industrial-header {
  text-align: center;
  margin-bottom: 50px;
}

.industrial-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.industrial-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 10px;
}

.industrial-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.industrial-image {
  position: relative;
  height: 300px;
}

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

.plot-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.industrial-badge {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #212529;
}

.industrial-content {
  padding: 30px;
}

.industrial-price-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.price-label {
  font-size: 18px;
  color: #666;
}

.price-value {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc107;
}

.price-note {
  font-size: 14px;
  color: #666;
}

.property-highlights {
  margin-bottom: 30px;
}

.property-highlights h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}

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

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.highlight-item i {
  font-size: 24px;
  color: #ffc107;
  margin-top: 5px;
}

.highlight-item h4 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 16px;
}

.highlight-item p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.location-advantages {
  margin-bottom: 30px;
}

.location-advantages h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.advantages-list {
  list-style: none;
  padding: 0;
}

.advantages-list li {
  /*display: flex;*/
  /*align-items: flex-start;*/
  /*gap: 10px;*/
  margin-bottom: 10px;
  color: #666;
}

.advantages-list i {
  color: #28a745;
  margin-top: 3px;
}

.business-uses {
  margin-bottom: 30px;
}

.business-uses h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.uses-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.use-tag {
  background: #ffc107;
  color: #212529;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.investment-benefits {
  margin-bottom: 30px;
}

.investment-benefits h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}

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

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

.benefit-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.benefit-item i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}

.benefit-item h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #666;
  font-size: 14px;
}

.industrial-cta {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.cta-content h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  /*flex-wrap: wrap;*/
}

.btn {
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: grid;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
  color: white;
}

.btn-success {
  background: #28a745;
  color: white;
}

.btn-success:hover {
  background: #218838;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-outline:hover {
  background: #007bff;
  color: white;
}

.btn-warning {
  background: #ffc107;
  color: #212529;
}

.btn-warning:hover {
  background: #e0a800;
  color: #212529;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
  color: white;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 15px;
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  color: #ffc107;
  font-size: 18px;
  width: 24px;
}

.contact-item a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: #007bff;
}

.contact-item span {
  color: #666;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-link.whatsapp {
  background: #25D366;
}

.social-link.email {
  background: #007bff;
}

.social-link.phone {
  background: #28a745;
}

/* Farmhouse Section */
.farmhouse-section {
  background: #f8f9fa;
}

.farmhouse-header {
  text-align: center;
  margin-bottom: 50px;
}

.farmhouse-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.farmhouse-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 10px;
}

.farmhouse-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.farmhouse-image {
  position: relative;
  height: 250px;
}

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

.farm-badge {
  background: linear-gradient(135deg, #28a745, #218838);
  color: white;
}

.farmhouse-content {
  padding: 25px;
}

.farmhouse-type {
  color: #2c3e50;
  margin-bottom: 10px;
}

.farmhouse-price {
  font-size: 2rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 20px;
}

.farmhouse-sizes {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.farmhouse-size {
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
}

.farmhouse-features {
  margin-bottom: 20px;
}

.farmhouse-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.farmhouse-feature i {
  color: #28a745;
  margin-top: 3px;
}

.payment-plan {
  margin-bottom: 25px;
}

.payment-plan h5 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.payment-plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.payment-plan-item i {
  color: #007bff;
}

.property-actions-main {
  display: flex;
  gap: 15px;
}

/* Featured Plots Section */
.featured-properties {
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.featured-plot-main {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plot-image-container {
  position: relative;
  height: 400px;
}

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

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}


.badge {
padding: 5px 11px;
    border-radius: 20px;
    font-size: 12px;
  font-weight: 600;
  color: white;
}

.mcf-badge {
  background: #007bff;
}

.legal-badge {
  background: #28a745;
}

.loan-badge {
  background: #ffc107;
  color: #212529;
}

.plot-details {
  padding: 40px;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  margin: 15px 0;
}

.price-info {
  margin: 25px 0;
}

.current-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 5px;
}

.price-note {
  color: #666;
  font-size: 14px;
}

.plot-sizes-section {
  margin: 30px 0;
}

.plot-sizes-section h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.size-item {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

.key-features {
  margin: 30px 0;
}

.key-features h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: #28a745;
}

.payment-plan-details {
  margin: 30px 0;
}

.plan-details {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

.plan-phase {
  text-align: center;
  flex: 1;
}

.phase-title {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.phase-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.connectivity-info {
  margin: 30px 0;
}

.connectivity-info h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

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

.connectivity-info li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.plot-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  /*flex-wrap: wrap;*/
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #2c3e50;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  padding: 0 20px 20px;
  max-height: 500px;
}


/* Keywords Section */
.keywords-section {
  padding: 60px 0;
  background: white;
}

.keyword-category {
  margin-bottom: 40px;
}

.keyword-category h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.keyword-tags {
     display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.keyword-tag {
  background: #f8f9fa;
  padding: 10px 20px;
  border-radius: 25px;
  color: #495057;
  font-size: 16px;
  transition: all 0.3s;
  border: 1px solid #dee2e6;
}

.keyword-tag.primary {
  background: #007bff;
  color: white;
}

.keyword-tag:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  
  .keyword-tag {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
}

.nav-item .nav-link
 {
    color: #fff;
    font-weight: 600;
}