* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #0a1e35;
  overflow-x: hidden;
  position: relative;
  background-color: #0a1e35;
  margin: 0;
  padding: 0;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0a1e35;
}

.background-image-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("images/bg-right.png");
  background-size: cover;
  background-position: fit;
  opacity: 0.8;
}

.background-image-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-image: url("images/bg-left.png");
  background-size: cover;
  background-position: fit;
  opacity: 0.8;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Logo */
.logo-container {
  text-align: center;
  margin-bottom: 50px;
}

.logo {
  height: 250px;
}

/* Main Content */
.main-content {
  padding: 0;
  margin-bottom: 50px;
}

.heading {
  color: #ffd700;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.description {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.description-subtitle {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.divider {
  border: none;
  border-top: 1px solid #d3d3d3;
  margin: 30px auto;
  max-width: 90%;
  opacity: 0.8;
}

/* Contact Information */
.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}
.contact-link:hover {
  opacity: 0.8;
}
.contact-icon {
  width: 24px;
  height: 24px;
}

/* Form Container */

.form-title {
  color: #ffd700;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* Alerts */
.alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.3);
  border: 1px solid #4caf50;
  color: #ffffff;
}

.alert-error {
  background-color: rgba(244, 67, 54, 0.3);
  border: 1px solid #f44336;
  color: #ffffff;
}

/* Form */
.quote-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.textarea-group {
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 48px;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #333;
}
.form-group textarea {
  border-radius: 24px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 50px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background: transparent linear-gradient(176deg, #fdd317 0%, #e46a23 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
  border: none;
  padding: 16px 80px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 250px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  margin-bottom: 100px;
  margin-top: 0;
  flex-wrap: wrap;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.gallery-image {
  width: 300px;
  height: auto;
  display: block;
  transform: translateY(100px);
  transition: transform 0.3s;
  margin: -15px;
}

/* Footer */
.footer {
  background: transparent linear-gradient(0deg, #e46a23 0%, #fdd317 100%) 0% 0% no-repeat padding-box;
  width: 100%;
  padding: 10px 0;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-link {
  color: #21244b;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-text {
  color: #21244b;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 25px;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery-image {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .container {
    padding: 40px 20px 0;
  }

  .heading {
    font-size: 28px;
  }

  .logo {
    max-width: 80% !important;
    height: auto;
  }

  .form-title {
    font-size: 24px;
  }

  .background-image-left,
  .background-image-right {
    display: none !important;
  }

  .side-by-side {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
