/* Hero Section */
.hero {
    padding: 80px 8% 120px 8%;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeInOnly 1.5s ease;
}

.location-tag {
    color: var(--emerald);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

h1 { font-size: 3.8rem; line-height: 1.1; margin: 1rem 0; color: var(--dark); }

@media (max-width: 900px) {
    .hero { padding: 56px 6% 80px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    h1 { font-size: clamp(2.5rem, 8vw, 3.8rem); }
    .city-map { height: min(55vw, 450px); }
    .feature-section { padding: 70px 6%; }
    .feature-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

.highlight { color: var(--emerald); }

.hero-btns { margin-top: 2.5rem; display: flex; gap: 1rem}

.btn-solid {text-decoration: none}


/* Map Mockup */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 8px solid white;
    
}

.city-map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.1);
    animation: fadeInLeft 1s ease;
}

.map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(27, 67, 50, 0.1);
}

/* Feature Cards (Landing Page) */
.feature-section { padding: 100px 8%; }
.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 50px;
    animation: fadeInOnly 1.5s ease; 
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative; 
    animation: scaleIn 0.8s ease;
}

.coming-soon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(20, 30, 45, .8);
    color: white;
    text-transform: uppercase;
    display: flex; /* Tells the browser to use Flexbox layout rules */
    justify-content: center; /* Aligns the text horizontally (left-to-right center) */
    align-items: center; /* Aligns the text vertically (top-to-bottom center) */
    flex-direction: column;
    transition: transform .3s ease;

}


.coming-soon h2 {
    font-size: 1.5rem;
    margin: 10px 0 5px 0;
    transition: transform .3s ease;
}

.coming-soon:hover h2{
    transform: scale(1.1); 
}

.coming-soon p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: none; /* Turns off the forced UPPERCASE */
    opacity: 0.7; /* Makes it a softer, premium gray-white */
    transition: transform .3s ease;
}

.coming-soon:hover p{
    transform: scale(1.1); 
}

.icon {
  /* Step 1: Make it a perfect square */
  width: 50px;
  height: 50px;
  
  /* Step 2: Turn the square into a circle */
  border-radius: 50%;
  
  /* Step 3: Center the inner icon perfectly */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  
  /* Step 4: Add colors and styling */
  background-image: linear-gradient(#f7980a, #f1cc26);
  font-size: 20px;
  transition: transform .3s ease;
}

.coming-soon:hover .icon {
    transform: scale(1.1);
}


.img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}



@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}


@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}


@keyframes fadeInOnly {
    from { opacity: 0; }
    to { opacity: 1; }
}
