/* =========================================
   RESET & BASE STYLES
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   HEADER SECTION
========================================= */

/* Top Banner */
.top-banner {
  background-color: #7edfc6;
  padding: 80px 0 60px;
  text-align: center;
  margin-top: -40px;
}

.top-banner h1 {
  font-size: 3.3rem;
  font-weight: 900;
  color: #0b1221;
  margin-bottom: 15px;
}

.breadcrumb {
  font-size: 1.2rem;
  color: #0b1221;
}

.breadcrumb a {
  color: #0b1221;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #f7a323;
}

.breadcrumb span {
  margin: 0 10px;
}

/* =========================================
   INFO CARDS SECTION
========================================= */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: -30px auto 60px;
  max-width: 1000px;
  position: relative;
  z-index: 10;
  margin-top: 30px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-icon {
  background: #e8f9f7;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.8rem;
  color: #64d3c2;
}

.info-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #0b1221;
}

.info-content p {
  color: #555;
  margin-bottom: 5px;
}

.info-content a {
  color: #64d3c2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-content a:hover {
  color: #f7a323;
}

/* =========================================
   CONTACT FORM SECTION
========================================= */
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;
}

/* Heading */
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0b1221;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #64d3c2;
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #64d3c2;
  box-shadow: 0 0 0 3px rgba(100, 211, 194, 0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.optional {
  color: #888;
  font-weight: normal;
  font-size: 0.9rem;
}

/* Name & Phone in One Row */
.name-phone-group {
  display: flex;
  gap: 20px;
}

.name-phone-group .form-group {
  flex: 1;
}

/* File Input */
input[type="file"] {
  padding: 5px;
  color: #64d3c2;
}

/* Submit Button */
.submit-btn {
  background: #64d3c2;
  color: #fff;
  border: 1px solid #64d3c2;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s, background 0.3s;
}

.submit-btn:hover {
  background: transparent;
  color: #64d3c2;
  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2.2rem;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-form,
  .company-info {
    padding: 30px;
  }

  .name-phone-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 40px 0 30px;
  }

  .contact-header h1 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .info-cards {
    margin-top: 40px;
  }

  .contact-form,
  .company-info {
    padding: 25px 20px;
  }

  .whatsapp-btn,
  .whatsapp-now {
    padding: 14px 20px;
    font-size: 1rem;
  }
}


    /* Success message styles */
    .success-message {
        position: fixed;
        top: 20px;
        right: 20px;
        background-color: #4CAF50;
        color: white;
        padding: 15px 25px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 10000;
        display: flex;
        align-items: center;
        gap: 10px;
        transform: translateX(120%);
        transition: transform 0.3s ease-in-out;
        max-width: 350px;
    }
    
    .success-message.show {
        transform: translateX(0);
    }
    
    .success-message i {
        font-size: 20px;
    }
    
    .success-message .message-content {
        flex: 1;
    }
    
    .success-message .close-btn {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        font-size: 16px;
        padding: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }