.container{
   padding: 0 10%;
}
.hero-fullscreen {
    position: relative;
    width: 100%; 
    height: 75vh; 
    overflow: hidden;
}

/* --- Background and Animation --- */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transition: transform 50s ease-out; 
    animation: zoom-in-out 50s linear infinite alternate;
}

@keyframes zoom-in-out {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } /* Zoom in slowly */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

/* --- Content Styling (Left-Center Alignment) --- */
.hero-content {
    position: absolute;
    top: 50%;
    left: 10%; 
    transform: translateY(-50%); 
    max-width: 600px; 
    color: #ffffff;
    z-index: 3;
    text-align: left;
}

.hero-heading {
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
  
  .section-header-natural {
            text-align: center;
            margin: 60px 0;
        }

        .section-header-natural h2 {
            font-size: 5rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        .section-header-natural h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .section-header-natural p {
            color: var(--gray);
            font-size: 1.8rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- 2. Contact Info Section (Cards) --- */
        .contact-info-section-natural {
            margin-bottom: 80px;
            padding: 0 30px;
        }

        .info-cards-natural {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .info-card-natural {
            background: var(--white);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: var(--transition);
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }
        .info-card-natural::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transition: var(--transition);
            transform: translateY(-100%);
        }

        .info-card-natural:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
        }
        .info-card-natural:hover::before {
            transform: translateY(0%);
        }

        .info-card-natural i {
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
            font-size: 3.9rem;
        }

        .info-card-natural:hover i {
            color: var(--secondary);
            transform: scale(1.1);
        }

        .info-card-natural h3 {
            font-size: 2.4rem;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .info-card-natural p, .info-card-natural a {
            color: var(--gray);
            font-size: 1.6rem;
            text-decoration: none;
            display: block;
            margin: 8px 0;
            line-height: 1.6;
        }

        .info-card-natural a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        /* --- 3. Contact Form & Map Section --- */
        .form-map-layout-natural {
            display: grid;
            grid-template-columns: 1.2fr 1fr; /* Form slightly larger */
            gap: 60px;
            margin-bottom: 100px;
        }

        .contact-form-block, .map-block-natural {
            background: var(--white);
            padding: 10px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            border: 1px solid #eee;
        }

        .contact-form-block{
          padding: 40px 30px;
        }
        
        .contact-form-block h3 {
            font-size: 3.6rem;
            text-align: start;
            margin-bottom: 35px;
            color: var(--dark);
        }

        .form-natural {
            display: flex;
            flex-direction: column;
            gap: 17px;
        }

        .form-control-natural {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            /* border-radius: var(--border-radius); */
            font-size: 1.05rem;
            color: var(--dark);
            background-color: var(--light-gray);
            transition: var(--transition);
            box-sizing: border-box;
        }

        .form-control-natural::placeholder {
            color: #999999;
            font-size: 1.6rem;
        }
      select.form-control-natural {
    font-size: 1.6rem;
    padding: 1.4rem;
    background-color: #f8f8f8;
    border: 2px solid #ccc;
    color: #333;
}


        .form-control-natural:focus {
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 4px rgba(195, 146, 46, 0.15);
            outline: none;
        }

        textarea.form-control-natural {
            resize: vertical;
            min-height: 180px;
        }

        select.form-control-natural {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%237a7a7a' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 12px;
        }

        .btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            cursor: pointer;
            /* font-size: 1.1rem; */
            font-weight: 600;
            transition: var(--transition);
            margin-top: 25px;
            align-self: flex-start;
            min-width: 280px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .contact-form-map-section{
          background-color: #f1f1f1;
          padding: 20px;
        }

        .btn:hover {
            background-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        /* Map Area */
        .map-block-natural iframe {
            width: 100%;
            height: 100%;
            min-height: 680px; /* Taller map to match form block */
            border-radius: var(--border-radius);
            border: none;
        }
        
        /* Success Message */
        .success-message-natural {
            display: none;
            background: #eafbe7; /* Very light green */
            color: #1e824c; /* Darker green */
            border: 1px solid #c7e9c5;
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 30px;
            animation: fadeIn 0.6s ease-out;
            box-shadow: var(--shadow-medium);
        }

        .success-message-natural h3 {
            margin: 0 0 15px 0;
            font-size: 1.6rem;
            color: #1e824c;
            font-family: 'Lora', serif;
        }

        .success-message-natural p{
          text-align: justify;
        }

        .success-message-natural i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #4CAF50;
        }

        /* Add this CSS to your stylesheet */
.live-feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.live-feedback p {
    margin: 0;
}

.live-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.live-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

        /* --- Responsive Adjustments --- */
        @media (max-width: 992px) {
            .hero-banner-content-natural h1 {
                font-size: 4rem;
            }
            .hero-banner-content-natural p {
                font-size: 1.3rem;
            }
            .section-header-natural h2 {
                font-size: 3rem;
            }
            .form-map-layout-natural {
                grid-template-columns: 1fr; /* Stack form and map */
                gap: 50px;
            }
            .map-block-natural iframe {
                min-height: 450px;
            }
        }

        @media (max-width: 768px) {
            .container{
   padding: 0 5%;
}
            .hero-banner-natural {
                height: 350px;
                margin-bottom: 60px;
            }
            .hero-banner-content-natural h1 {
                font-size: 3rem;
            }
            .hero-banner-content-natural p {
                font-size: 1.1rem;
            }
            .section-header-natural h2 {
                font-size: 2.5rem;
            }
            .info-cards-natural {
                grid-template-columns: 1fr;
            }
            .contact-form-block, .map-block-natural {
                padding: 35px;
            }
            .btn {
                width: 100%;
                min-width: unset;
                padding: 15px 30px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes rotatePattern {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .live-feedback {
    min-height: 20px; /* Ensure space for the message */
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left; /* Aligned with the form */
    margin-top: 5px;
    transition: margin 0.3s ease-in-out;
}
  
@media (max-width:400px) {
    .container{
   padding: 0 2%;
}
}