:root {
  --dark: #121212;
  --gold-dark: #c5a059;
  --cream: #f4f1ea;
  --white: #ffffff;
  --furniture-bg: #fdfdfb;
  --tec-blue: #236b50;
  --tec-dark: #0f3d2e;
  --tec-bg: #f4f7f9;
  --tec-icon-bg: #aceed6;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --font-body: "Outfit", sans-serif;
}

.greentec-header {
  height: 45vh;
  position: relative;
  background: url("images/Untitled\ design\ \(2\)_260504_153132.jpg")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

header {
  height: 40vh;
}

.contact-page {
  background: var(--furniture-bg);
}

.booking-section {
  padding: 100px 0;
  width: 100%;
}

/* The inner container that centers content */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* The Grid System */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
/* Logo/Label Image Styling */
.contact-label {
  margin-bottom: 40px;
}

.contact-label img {
  height: 55px;
  width: auto;
  display: block;
}

/* Info Item Rows */
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.info-item span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--dark);
}

.info-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Social Box */
.social-box {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-box p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #888;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.2rem;
  transition: var(--transition);
}

/* --- A. FURNITURE THEME (GOLD) --- */
.furniture-theme {
  background-color: var(--furniture-bg);
}

/* Gold Icons */
.furniture-theme .info-item span {
  background: var(--cream);
  color: var(--gold-dark);
}

/* Gold Socials */
.furniture-theme .social-icons a {
  color: var(--gold-dark);
}
.furniture-theme .social-icons a:hover {
  color: var(--dark);
}

/* Gold Form Focus */
.furniture-theme input:focus,
.furniture-theme select:focus,
.furniture-theme textarea:focus {
  border-color: var(--gold-dark);
}

/* Gold Button */
.btn-gold-full {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 18px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold-full:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* --- B. GREEN TEC THEME (BLUE) --- */
.greentec-theme {
  background-color: var(--tec-bg);
  border-top: 1px solid #dce4ec;
}

.greentec-theme .info-item span {
  background: var(--tec-icon-bg);
  color: var(--tec-blue);
}

.greentec-theme .social-icons a {
  color: var(--tec-blue);
}
.greentec-theme .social-icons a:hover {
  color: var(--tec-dark);
}

.tec-form input:focus,
.tec-form select:focus,
.tec-form textarea:focus {
  border-color: var(--tec-blue);
}

.btn-blue-full {
  width: 100%;
  background: var(--tec-dark);
  color: var(--white);
  padding: 18px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-blue-full:hover {
  background: var(--tec-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 82, 152, 0.2);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Center text on mobile */
  .contact-info-panel {
    text-align: center;
    padding: 0 20px;
  }

  .contact-label img {
    margin: 0 auto;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .social-box {
    border-top: none;
    margin-top: 30px;
  }

  .social-icons {
    justify-content: center;
  }

  .booking-form-container {
    padding: 30px;
  }

  .laraison-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-image-box {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.contact-image-box:hover {
  transform: scale(1.02);
}

/* Background Images */
.furniture-img {
  background-image: url("images/la\ raison.jpg");
  background-color: #eee;
}

.greentec-img {
  background-image: url("images/Untitled\ design\ \(4\)_260504_153106.jpg");
  background-color: #eee;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .contact-image-box {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-label img {
    margin: 0 auto;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .booking-section {
    padding: 60px 0;
  }
}

.about-footer {
  padding: 50px 5% 40px;
  text-align: center;
  background: #000000;
  color: var(--white);
}

.footer-logo img {
  height: 45px;
  margin-bottom: 40px;
}

.footer-socials {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-socials a {
  color: var(--gold-dark);
  font-size: 1.3rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 35px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  opacity: 0.6;
  text-transform: uppercase;
  color: var(--white);
}
