/* ===== Section ===== */
.contact-section {
  padding: 70px 20px;
  background: #f5f1eb; /* your beige tone */
}

/* ===== Layout ===== */
.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* ===== Left Content ===== */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 34px;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  color: #6f6a64;
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-box p {
  margin-bottom: 18px;
  color: #3e3a36;
  line-height: 1.6;
}

.info-box strong {
  display: block;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 4px;
}

/* ===== Form ===== */
.contact-form {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e9e4dc;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* ===== Inputs ===== */
.form-group {
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6e1d9;
  border-radius: 10px;
  font-size: 14px;
  background: #faf8f5;
  transition: 0.25s ease;
}

/* Focus = your green accent */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7c9a7c;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(124,154,124,0.12);
}

/* ===== Button ===== */
.contact-form button {
  width: 100%;
  height: 46px;
  background: #7c9a7c; /* your green */
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-form button:hover {
  background: #6e8c6e;
}

/* ===== Mobile Fix (IMPORTANT for your issue) ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 35px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-form {
    width: 100%;
    padding: 20px;
  }
}


.hero-section {
    background: #aad3a8;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.hero-container {
    max-width: 900px;
    margin: auto;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 500;
    color: #1c1c1c;
    line-height: 1.3;
}

.highlight {
    color: #c07a5c;
    font-style: italic;
}

.highlight-light {
    color: #c07a5c;
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-btn {
    margin-top: 40px;
    background: #4c6b4f;
    color: #fff;
    padding: 16px 34px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #3b5640;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .feature-boxes {
        flex-direction: column;
        align-items: center;
    }
}

/* STICKY NAVBAR */
.elarisse-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Add shadow on scroll */
.elarisse-nav.scrolled {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Space below navbar */
body {
    padding-top: 90px;
}


html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

.contact-form {
  backdrop-filter: blur(6px);
}



/* ==========================
   APPOINTMENT SECTION
========================== */

.appointment-section{
    padding:80px 20px;
    background:#f5f1eb;
}

.appointment-container{
    max-width:1100px;
    margin:auto;
}

.appointment-content{
    text-align:center;
    margin-bottom:40px;
}

.appointment-content h2{
    font-size:36px;
    font-weight:500;
    color:#2c2c2c;
    margin-bottom:12px;
}

.appointment-content p{
    max-width:650px;
    margin:auto;
    color:#6f6a64;
    line-height:1.8;
    font-size:15px;
}

/* ==========================
   FORM
========================== */

.appointment-form{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    border:1px solid #e9e4dc;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    backdrop-filter:blur(6px);
}

/* Two Column Layout */

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

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:#444;
}

/* Inputs */

.appointment-form input,
.appointment-form select,
.appointment-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #e5dfd7;
    border-radius:12px;
    background:#faf8f5;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;
    font-family:inherit;
}

.appointment-form textarea{
    resize:vertical;
    min-height:140px;
}

/* Focus */

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus{
    outline:none;
    border-color:#7c9a7c;
    background:#fff;
    box-shadow:0 0 0 3px rgba(124,154,124,.12);
}

/* Button */

.appointment-form button{
    margin-top:20px;
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#7c9a7c;
    color:#fff;
    font-size:16px;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
}

.appointment-form button:hover{
    background:#6e8c6e;
    transform:translateY(-2px);
}

/* Placeholder */

.appointment-form input::placeholder,
.appointment-form textarea::placeholder{
    color:#999;
}

/* Remove native arrow styling consistency */

.appointment-form select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237c9a7c' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6' stroke='%237c9a7c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 15px center;
}

/* Mobile */

@media (max-width:768px){

    .appointment-section{
        padding:60px 15px;
    }

    .appointment-content h2{
        font-size:28px;
    }

    .appointment-form{
        padding:22px;
    }

    .appointment-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

}


