:root {
    --primary-color: #952014;
    /* Deep Red - Navbar Background */
    --secondary-color: #3a4736;
    /* Dark Green - Cart/Accents */
    --white-color: #ffffff;
    --black-color: #000000;
    --light-bg: #f8f9fa;
    /* Top Header BG */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white-color);
}


/* --- BANNER SECTION STYLING --- */
.banner-wrapper {
    position: relative;
    height: 80vh;
    /* Full Viewport Height */
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 1. Background & Overlay */
.banner-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* Zoom Animation */
    animation: zoomEffect 20s infinite alternate;
}

.banner-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* 2. Banner Typography */
.banner-text-content {
    margin-bottom: 100px;
    /* Space for bottom cards */
}

.banner-heading {
    color: var(--white-color);
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.banner-heading span {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s ease forwards;
}

.banner-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    opacity: 0;
    animation: fadeUpAnim 1s ease 0.6s forwards;
}

/* 3. Bottom Info Strip (Desktop Layout) */
.bottom-info-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    z-index: 10;
}

/* Scroll Arrow Box (Orange/Red) */
.scroll-indicator-box {
    width: 80px;
    background-color: #ff9f43;
    /* Accent Color */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
}

.bounce-effect {
    animation: arrowBounce 2s infinite;
}

/* Common Box Style */
.stat-block {
    flex: 1;
    /* Take available space */
    padding: 30px;
    color: var(--white-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.stat-block:hover {
    transform: translateY(-10px);
    /* Lift Up Effect */
    padding-bottom: 40px;
    /* Expand slightly */
}

/* Green Theme Block */
.theme-green {
    background-color: var(--secondary-color);
    /* Green */
    max-width: 400px;
}

.theme-green:hover {
    background-color: #2c3829;
}

/* Red Theme Block */
.theme-red {
    background-color: var(--primary-color);
    /* Red */
    max-width: 400px;
}

.theme-red:hover {
    background-color: #7a1a10;
}

.icon-holder i {
    font-size: 28px;
    opacity: 0.8;
}

.text-content h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.text-content p {
    font-size: 13px;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

/* Action Area (White Button Box) */
.action-area {
    background-color: var(--white-color);
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.cta-btn-desk {
    color: var(--black-color);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.cta-btn-desk:hover {
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* --- ANIMATIONS --- */
@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomEffect {
    to {
        transform: scale(1.1);
    }
}

@keyframes arrowBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .banner-wrapper {
        height: auto;
        padding: 100px 0 50px 0;
    }

    .banner-heading {
        font-size: 42px;
    }

    .mobile-card-view {
        padding: 20px;
        margin-bottom: 0;
        text-align: center;
        display: block;
    }

    /* Stack Colors on Mobile */
    .theme-green {
        background-color: var(--secondary-color);
        max-width: 100%;
    }

    .theme-red {
        background-color: var(--primary-color);
        max-width: 100%;
    }

    .cta-btn-mobile {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--primary-color);
        color: white;
        text-decoration: none;
        font-weight: 700;
        border-radius: 5px;
    }
}

/* --- HERO BUTTON GROUP STYLING --- */
.hero-btn-group {
    display: flex;
    gap: 20px;
    /* Space between buttons */
    align-items: center;
    flex-wrap: wrap;
    /* Wraps on very small screens */
}

/* Common Button Style */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    /* Pill Shape */
    transition: all 0.4s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    /* Prepare for border hover */
}

/* 1. GREEN BUTTON (About Us) */
.btn-green {
    background-color: var(--secondary-color);
    /* Green BG */
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(58, 71, 54, 0.3);
}

.btn-green:hover {
    background-color: transparent;
    border-color: var(--white-color);
    /* Border turns White */
    color: var(--primary-color);
    transform: translateY(-5px);
    /* Lift Up */
}

/* 2. RED BUTTON (Contact Us) */
.btn-red {
    background-color: var(--primary-color);
    /* Red BG */
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(149, 32, 20, 0.3);
}

.btn-red:hover {
    background-color: var(--white-color);
    /* Background turns White */
    color: var(--primary-color);
    /* Text turns Red */
    border-color: var(--white-color);
    transform: translateY(-5px);
    /* Lift Up */
}

/* --- ICON ANIMATIONS --- */
.btn-hero i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Slide Right Animation (For Arrow) */
.btn-green:hover .icon-slide {
    transform: translateX(5px);
}

/* Shake Animation (For Phone) */
.btn-red:hover .icon-shake {
    animation: phoneShake 0.5s ease;
}

@keyframes phoneShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 576px) {
    .hero-btn-group {
        flex-direction: column;
        /* Stack buttons on mobile */
        width: 100%;
        gap: 15px;
    }

    .btn-hero {
        width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* --- ABOUT SECTION STYLES --- */
.about-section {
    padding: 100px 0;
    background-color: var(--white-color);
    position: relative;
}

/* Left Side Styles */
.section-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* The decorative line next to "Our Story" */
.section-subtitle::before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-right: 15px;
    display: inline-block;
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black-color);
    /* margin-bottom: 40px; */
}

.highlight-text {
    color: var(--primary-color);
    /* Red highlight in text */
}

/* Large Image Styling */
.big-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.big-img {
    width: 100%;
    height: 500px;
    /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.big-img-wrapper:hover .big-img {
    transform: scale(1.05);
}

/* Right Side Styles */
.small-img-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 100%;
    margin-bottom: 30px;
}

.small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

/* Tags on images */
.img-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.about-desc {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

@media(max-width:425px){
    .about-desc {
        padding: 20px;
    }
    .border-bottom {
        padding: 20px;
    }
}

/* Stats Section */
.stat-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Bottom Intro Area */
.intro-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white-color);
    margin-left: -15px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

/* Play Button Pulse */
.play-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.watch-text {
    font-weight: 700;
    color: var(--black-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }

    .big-img {
        height: 400px;
        margin-bottom: 30px;
    }

    .intro-area {
        flex-wrap: wrap;
    }
}

/* --- FEATURED PRODUCTS STYLING --- */
.featured-products-section {
    padding: 50px 0;
    /* More padding for cleaner look */
    position: relative;
    overflow: hidden;
    /* Removed solid background color */
}

/* 1. Background Image Setup */
.fp-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect */
    z-index: 0;
}

/* 2. Dark Overlay */
.fp-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.651);
    /* Dark Overlay */
    z-index: 1;
}

/* 3. Main Wrapper (Colored Background) */
.float-card-wrapper {
    position: relative;
    border-radius: 20px;
    height: 450px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
}

/* Background Colors */
.bg-soft-green {
    background-color: #e6ebe7;
}

.bg-soft-red {
    background-color: #fceceb;
}

.bg-soft-grey {
    background-color: #f0f2f5;
}

/* 4. Product Image Styling */
.product-image-area {
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.float-img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* 5. White Floating Info Card */
.white-info-card {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 6. Typography inside Card */
.prod-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 5px;
    font-family: 'PT Serif', serif;
}

.prod-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
}

/* NEW: Product Status/Grade (Replaces Price) */
.prod-status {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add Button (Round Icon) */
.btn-icon-add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--black-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* 7. HOVER EFFECTS */
.float-card-wrapper:hover {
    transform: translateY(-5px);
}

.float-card-wrapper:hover .float-img {
    transform: scale(1.1) rotate(-3deg);
}

.float-card-wrapper:hover .white-info-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.float-card-wrapper:hover .btn-icon-add {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* 8. Text Helpers for Dark Background */
.text-light-green {
    color: #81c784 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.title-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-top: 5px;
}

/* 9. Header Button (White Outline for Dark BG) */
.btn-explore-white {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-explore-white:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    padding-left: 35px;
}

/* Responsive */
@media(max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .float-card-wrapper {
        height: 400px;
    }
}

/* --- OVERLAP TESTIMONIAL STYLING --- */
.modern-testi-section {
    padding: 100px 0;
    background-color: #eef5f0;
    /* Very Light Green Tint */
    position: relative;
    overflow: hidden;
}

/* 1. The White Content Card */
.testi-overlap-card {
    background-color: var(--white-color);
    padding: 60px;
    border-radius: 30px;
    /* Smooth Corners */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    margin-right: -100px;
    /* THE OVERLAP TRICK */
    border-bottom-right-radius: 100px;
    /* Unique Shape like reference */
}

/* Typography */
.sub-title {
    color: var(--secondary-color);
    /* Green */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-title {
    color: var(--black-color);
    /* Dark Blue/Black */
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'PT Serif', serif;
}

.testi-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

/* Client Info */
.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-bg);
}

.client-profile .name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 2px;
}

.client-profile .role {
    font-size: 13px;
    color: var(--primary-color);
    /* Red */
    font-weight: 600;
    text-transform: uppercase;
}

/* 2. Image Wrapper (Right Side) */
.testi-image-wrapper {
    height: 600px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.testi-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Navigation Buttons (Inside Card) */
.nav-btn-group {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 15px;
}

.custom-prev,
.custom-next {
    position: static !important;
    /* Reset Swiper default */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--secondary-color);
    /* Green Icon */
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.custom-prev::after,
.custom-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Hover Effect on Buttons */
.custom-prev:hover,
.custom-next:hover {
    background-color: var(--secondary-color);
    /* Green BG */
    color: var(--white-color);
    /* White Icon */
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(58, 71, 54, 0.3);
}

/* 4. Background Decor (Wavy Lines) */
.bg-shape-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%233a4736' stroke-width='0.5' d='M0 0 Q 50 50 0 100' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .testi-overlap-card {
        margin-right: 0;
        /* Remove overlap on mobile */
        padding: 40px;
        text-align: center;
        border-bottom-right-radius: 30px;
    }

    .client-profile {
        justify-content: center;
        text-align: left;
    }

    .nav-btn-group {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 30px;
    }

    .modern-testi-section {
        padding: 60px 0;
    }
}

/* --- ENQUIRY SECTION STYLING --- */
.enquiry-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 1. Background Image & Overlay */
.enquiry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    /* Parallax Feel */
    z-index: 0;
    animation: slowZoom 20s infinite alternate;
}

.enquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    /* Green Theme */
    opacity: 0.92;
    /* High opacity for readability */
    z-index: 1;
}

/* 2. Left Column Content */
.sub-title-anim {
    color: var(--white-color);
    /* Red */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 10px;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.main-title-anim {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.highlight-text {
    color: #ff9f43;
    /* Accent Color (Orange/Yellow) for contrast */
}

.desc-anim {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* 3. Buttons Design */
.btn-group-anim {
    animation: slideInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Solid Red Button */
.btn-solid-red {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary-color);
}

.btn-solid-red:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
}

/* Outline White Button (With Icon) */
.btn-outline-white {
    background-color: transparent;
    color: var(--white-color);
    padding: 10px 25px 10px 10px;
    /* Adjusted padding */
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white .icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
}

.btn-outline-white:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: rotate(20deg);
}

/* 4. Right Column: Form Card */
.enquiry-form-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(50px);
}

.form-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 5px;
}

.form-sub {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/* --- INPUT FIELDS STYLING --- */
.input-wrapper {
    position: relative;
}

/* Common Icon Style */
.input-icon {
    position: absolute;
    left: 15px;
    /* Icon Position from Left */
    top: 50%;
    transform: translateY(-50%);
    /* Vertically Center */
    color: var(--primary-color);
    /* Red Icon */
    z-index: 10;
    font-size: 14px;
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
}

/* SPECIAL: Fix for Textarea Icon (Move to Top) */
.textarea-icon {
    top: 20px !important;
    /* Position from top */
    transform: none !important;
    /* Remove vertical center */
}

/* Input & Textarea Style */
.form-control {
    padding: 15px 15px 15px 50px !important;
    /* Left Padding 50px = Space for Icon */
    background-color: var(--light-bg);
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    color: var(--black-color);
    transition: 0.3s;
}

.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(149, 32, 20, 0.1);
    /* Red Glow */
    border-color: var(--primary-color);
    background-color: var(--white-color);
}

/* Submit Button */
.btn-submit-form {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-submit-form:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(149, 32, 20, 0.2);
}

/* --- ANIMATIONS --- */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    /* from handled in class definition for form */
}

@keyframes slowZoom {
    to {
        transform: scale(1.1);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .enquiry-section {
        padding: 60px 0;
    }

    .main-title-anim {
        font-size: 32px;
    }

    .btn-group-anim {
        flex-direction: column;
        width: 100%;
    }

    .btn-solid-red,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .enquiry-form-card {
        padding: 30px 20px;
    }
}

/* --- PROMO BOX STYLING (White Theme) --- */
.promo-box-area {
    padding: 100px 0;
    position: relative;
    background-color: var(--white-color);
    /* OUTER IS WHITE */
    overflow: hidden;
}

/* Background Pattern (Dark dots on White) */
.bg-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(58, 71, 54, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

/* 1. The Main Wrapper (GREEN CARD) */
.inner-promo-card {
    background-color: var(--secondary-color);
    /* GREEN CARD */
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    /* Soft Shadow */
    box-shadow: 0 20px 60px rgba(58, 71, 54, 0.25);
    z-index: 1;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effect */
.inner-promo-card:hover {
    transform: translateY(-8px);
}

/* 2. Animated Background Rings */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: spinCircle 25s linear infinite;
}

.circle-lg {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -50px;
    /* Red Dashed Line */
    border: 2px dashed rgba(149, 32, 20, 0.4);
}

.circle-sm {
    width: 550px;
    height: 550px;
    bottom: -150px;
    left: -100px;
    /* White Line (Low Opacity) */
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation-direction: reverse;
}

/* 3. Typography */
.promo-tagline {
    color: var(--white-color);
    /* Red */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

.promo-heading {
    color: var(--white-color);
    /* White Text */
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.promo-text {
    color: rgba(255, 255, 255, 0.85);
    /* Faded White */
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 600px;
    /* Limits width on large screens */
}

/* 4. The 3D Button Design */
.action-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    /* White Button */
    color: var(--secondary-color);
    /* Green Text */
    padding: 12px 12px 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* The Circle Icon inside Button */
.btn-icon-round {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    /* Green Circle */
    color: var(--white-color);
    /* White Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: all 0.4s ease;
}

/* HOVER EFFECT ON BUTTON */
.action-btn-pill:hover {
    background-color: var(--primary-color);
    /* Turns RED */
    color: var(--white-color);
    /* Text White */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.action-btn-pill:hover .btn-icon-round {
    background-color: var(--white-color);
    /* Circle turns White */
    color: var(--primary-color);
    /* Icon turns Red */
    transform: rotate(360deg);
    /* Spins */
}

/* 5. Animations */
@keyframes spinCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .inner-promo-card {
        padding: 40px 25px;
        text-align: center;
    }

    .promo-heading {
        font-size: 26px;
    }

    .action-btn-pill {
        margin-top: 20px;
    }

    .circle-lg {
        top: -100px;
        right: -100px;
    }
}

