/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

/* === Root Variables === */
:root {
    /* Fonts */
    --font-poppins: 'Poppins', sans-serif;
    --font-roboto: 'Roboto', sans-serif;

    /* Brand Colors */
    --color-green: #87c060;
    --color-yellow: #FFD700;
    --color-grey: #4B4B4B;
    --color-black: #111111;
    --color-white: #ffffff;


    --color-primary-bg: #182c24;
    --color-secondary-bg: #144833;
    --color-accent-dark: #063b27;
    --color-accent: #063b27;




    --color-accent-light: #cfff92;


    --color-style-guide-bg: #F8FAFC;
    --color-widget-bg: #fafafa;
    --color-heading-bg: #fbfbfb;
    --color-title-bg: #eeeeee;
    --color-search-border: #e7e7e7;
    --color-hover-bg: #e6e6e6;
    --color-gallery-block: #000;
    --color-shadow: 0px 0px 4px 0 #00000057;



    --color-green: #87c060;
    --color-yellow: #FFD700;

}



/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-family: var(--font-poppins);
}







.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn:before {
    content: "";
    background: #fff;
    height: 150%;
    top: -5%;
    opacity: .2;
    position: absolute;
    transform: rotate(10deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 32px;
    animation: btnmoveslide 2s infinite
}

@keyframes btnmoveslide {
    0% {
        left: -32px
    }

    to {
        left: 100%
    }
}



/* === Buttons === */
.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-yellow);
    color: var(--color-black);
}

.btn-outline {
    border: 2px solid var(--color-green);
    color: var(--color-green);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-green);
    color: var(--color-white);
}







/* Mobile Fixed Bottom Buttons */
.mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

/* Common styles for both buttons */
.mobile-fixed-buttons .mobile-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

/* Updated button colors using theme variables */
.call-btn {
    background-color: var(--color-yellow); /* Bright yellow */
    color: var(--color-black); /* Better contrast on yellow */
}

.whatsapp-btn {
    background-color: var(--color-green); /* Deep green/black tone */
    color: var(--color-white);
}

/* Add margin-bottom to footer when on mobile */
@media (max-width: 767.98px) {
    footer {
        margin-bottom: 2rem;
    }
}






/* ========================================= */
/* === HEADER V5 - CUSTOM & ORGANIZED CSS === */
/* ========================================= */

/* 1. GLOBAL HEADER STYLING (POSITIONING, TRANSITIONS, LOGO) */
.main-header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /* Transparent initially for hero section */
    background: rgba(0, 0, 0, 0.4);
    box-shadow: none;
    transition: all 0.4s ease-in-out;
}

/* Sticky/Scrolled State */
.main-header.scrolled {
    background: var(--color-black);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-header .logo img {
    height: 40px;
}


/* 2. DESKTOP NAVIGATION (Main Menu Links) */
.main-nav {
    flex-grow: 1;
    /* Allows nav to take center space */
    display: flex;
    justify-content: center;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav .nav-item {
    position: relative;
    /* Needed for dropdown */
}

.main-nav .nav-link {
    font-family: var(--font-poppins);
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--color-yellow);
    border-bottom: 2px solid var(--color-yellow);
}

.main-nav .dropdown-toggle::after {
    display: none;
}

/* Products Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 8px;
    transition: transform 0.3s;
}

/* 3. DESKTOP DROPDOWN/SUB-MENU STYLING (CSS Hover Logic) */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    background: var(--color-secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;

    /* Default Hidden State (for desktop) */
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Prevents clicks on link space when hidden */
}

/* DESKTOP: Hover to show sub-menu */
.nav-item.has-dropdown:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    /* Allows interaction when visible */
}

.sub-menu-item {
    font-family: var(--font-roboto);
    color: var(--color-white);
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu-item:hover {
    background-color: var(--color-green);
    color: var(--color-black);
}

.dropdown-divider-custom {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}


/* 4. CTA BUTTON */
.btn-header {
    background: none;
    border: 2px solid var(--color-green);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-header:hover {
    background: var(--color-green);
    color: var(--color-black);
}

/* 5. MOBILE MENU TOGGLER */
.menu-toggler {
    border: none;
    background: none;
    padding: 0;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle-icon {
    color: var(--color-yellow);
}

/* 6. MEDIA QUERY (MOBILE SPECIFIC OVERRIDES) */
@media (max-width: 991px) {

    /* Main Navigation Override */
    .main-nav {
        display: none;
        /* Collapsed by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-black);
        padding: 15px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .main-nav.active {
        display: block;
        /* Toggled by JS */
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 0;
    }

    .main-nav .nav-item {
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav .nav-item:last-child {
        border-bottom: none;
    }

    .main-nav .nav-link {
        padding: 15px 0;
        /* Larger tap area */
        border-bottom: none;
        display: block;
    }

    /* Mobile Dropdown Sub-menu Override (JS Click Logic) */
    .nav-item.has-dropdown .sub-menu {
        /* Overrides desktop positioning/visibility */
        position: static;
        right: 0;

        width: 100%;
        transform: none;
        visibility: visible;
        opacity: 1;
        max-height: 0;
        /* Hides the menu visually for JS toggle */
        overflow: hidden;
        margin: 0;
        padding: 0;
        background: var(--color-secondary-bg);
        border: none;
        box-shadow: none;
        transition: max-height 0.4s ease-in-out;
        pointer-events: auto;
        /* Always allow interaction on mobile */
    }

    .nav-item.has-dropdown:hover .sub-menu {
        /* margin: 0.5rem 0rem; */
        transform: translateX(0%) translateY(0) !important;
    }

    /* Active State (Toggled by JS click) */
    .nav-item.has-dropdown.active .sub-menu {
        max-height: 200px;
        padding: 10px 0;
    }

    /* Rotate the arrow on click */
    .nav-item.has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .sub-menu-item {
        padding-left: 30px;
    }

    /* CTA button on Mobile */
    .btn-header {
        padding: 6px 15px;
    }
}














/* === Hero Section === */
.hero-section {
    height: 100vh;
    /* Changed background to Deep Black with a subtle dark gradient for depth */
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-green) 100%);
    display: flex;
    align-items: center;
    padding: 100px 0;
    /* Increased padding to account for fixed header */
    position: relative;
    overflow: hidden;
    /* To contain potential floating elements */
}

/* New element for context/pre-title */
.hero-pre-title {
    font-family: var(--font-roboto);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-green);
    /* Use Electric Green for a confident, tech-savvy feel */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-poppins);
    font-size: 3.8rem;
    /* Increased size for impact */
    font-weight: 800;
    /* Made even bolder (assuming Poppins Bold/ExtraBold) */
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 1.25rem;
    /* Increased size for emphasis */
    font-weight: 600;
    /* Use Energetic Yellow for excitement and a youthful, vibrant tone [cite: 12, 29] */
    color: var(--color-yellow);
    margin: 15px 0 35px;
    /* Increased margin for separation */
    letter-spacing: 2px;
}

.hero-info {
    font-family: var(--font-roboto);
    font-size: 1.05rem;
    /* Slightly larger text for readability */
    color: #cccccc;
    /* Softer white for body text */
    line-height: 1.8;
    max-width: 95%;
    /* Increased max-width */
}

/* Use Energetic Yellow for the main content highlight (CTA/Excitement)  */
.hero-info .highlight {
    color: var(--color-yellow);
    font-weight: 600;
}


/* --- Button Refinements --- */
/* (Adjusted from previous suggestions to ensure they are present) */
.btn-primary:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    /* Yellow on Black is high contrast */
}

.btn-outline {
    border: 2px solid var(--color-green);
    color: var(--color-green);
    /* ... other styles ... */
}

.btn-outline:hover {
    background: var(--color-green);
    color: var(--color-white);
}

/* --- Hero Image Refinements --- */
.hero-img img {
    max-height: 520px;
    /* Slightly larger image */
    width: 100%;
    /* Auto width to maintain aspect ratio */
    object-fit: cover;
    border-radius: 20px;
    /* Slightly less aggressive corner radius for a "smart" feel */
    box-shadow: 0 15px 40px rgba(135, 192, 96, 0.4);
    /* Green shadow for eco-forward look */
    animation: float 4s ease-in-out infinite;
    /* Add a subtle 3D tilt effect for a dynamic, youthful feel */
    transform: perspective(1000px) rotateY(-5deg) scale(1);
    transition: all 0.5s ease;


}

.hero-img img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}


/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        height: auto;
        padding: 5rem 0;
        padding-top: 8rem;
    }

    .hero-info {
        margin: 0 auto 25px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }


    .hero-img img {
        margin-top: 4rem;
    }

    .hero-buttons a {
        width: 80%;
        margin-right: 0rem !important;
        margin-bottom: 1rem;
    }

}











.section-pre-title {
    font-family: var(--font-roboto);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--color-yellow);
    /* Energetic Yellow for excitement */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-poppins);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-roboto);
    font-size: 1.05rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}








/* ========================================= */
/* === MODELS OVERVIEW SECTION STYLES (BRIGHT THEME) === */
/* ========================================= */

.models-overview-section {
    /* Keep the overall section background dark for contrast with the cards */
    background: var(--color-secondary-bg);
    color: var(--color-white);
    padding-bottom: 5rem;
}

/* Section Titles - remain visible on the dark background */
.models-overview-section .section-pre-title {
    color: var(--color-yellow);
}

/* --- Model Card Styling --- */
.model-card {
    background: var(--color-white);
    /* SWITCHED TO WHITE for a clean, sharp look */
    /* border-radius: 15px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* Stronger shadow on light card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border: 3px solid var(--color-green);  */
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(135, 192, 96, 0.5);
    /* Stronger Green glow on hover */
}

/* --- Image Carousel/Slider Styling --- */
.model-carousel {
    /* background: var(--color-black);  */
    padding: 15px 15px 10px;
    border-bottom: 3px solid var(--color-yellow);
}

.model-img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    /* White glow on black BG */
}

/* Carousel controls for visibility on black background */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    /* White/Light controls */
    opacity: 0.8;
}

/* --- Text Details --- */
.model-details {
    padding: 0.7rem 0.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--color-black);
    /* Ensure text is readable on white BG */
}

.model-name {
    font-family: var(--font-poppins);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-green);
    text-transform: uppercase;
    /* margin-bottom: 5px; */
}

.model-tagline {
    display: none;
    font-family: var(--font-roboto);
    font-size: 1rem;
    color: var(--color-black);
    /* Dark text on white background */
    margin-bottom: 25px;
    flex-grow: 1;
}

/* --- WhatsApp Button (Themed) --- */
.btn-whatsapp {
    /* Style remains the same: Energetic Yellow CTA, which pops on the white card */
    display: inline-flex;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-yellow);
}

.btn-whatsapp:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 192, 96, 0.4);
}

.btn-whatsapp .fab {
    font-size: 1.4rem;
}


/* Responsive Adjustments */
@media (max-width: 767px) {
    .model-name {
        font-size: 1.6rem;
    }

    .model-tagline {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        font-size: 0.9rem;
    }

    .model-img {
        max-height: 200px;
    }
}






























/* ========================================= */
/* === Dealership Section STYLES (Clean & Professional) === */
/* ========================================= */

.dealership-section {
    background: var(--color-light-bg);
    color: var(--color-black);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Section Titles (Consistent with Contact Section) */
.dealership-section .section-pre-title {
    color: var(--color-yellow);
    /* Yellow accent for pre-title */
}

.dealership-section .section-title {
    color: var(--color-black);
}

.dealership-section .section-subtitle {
    color: var(--color-grey-text);
}

/* === Benefit Cards === */
.benefit-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--color-yellow);
    /* Energetic Yellow highlight on hover */
}

.benefit-icon {
    font-size: 3rem;
    color: var(--color-green);
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(135, 192, 96, 0.4);
}

.benefit-title {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
}

.benefit-description {
    font-family: var(--font-roboto);
    color: var(--color-grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ================================================== */
/* === DEALERSHIP APPLICATION FORM STYLES (Clean White Card) === */
/* ================================================== */

.dealership-form-card {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-title-dealership-form {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-black);
}

/* Form Input Styling */
.dealership-form-card .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: var(--color-light-bg);
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dealership-form-card .form-control:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 0.25rem rgba(135, 192, 96, 0.25);
    background-color: var(--color-white);
}

/* Select Dropdown Arrow */
.dealership-form-card select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2387c060' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
}

/* Dealership Submit Button */
.btn-submit-dealership {
    display: inline-block;
    background: var(--color-accent);
    /* Electric Green for the main CTA */
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}

.btn-submit-dealership:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}




@media (max-width: 728px) {
    .dealership-form-card {
        background: var(--color-white);
        padding: 1rem;
    }
}












/* === About Us Section === */
.about-section {
    background: var(--color-secondary-bg);
    color: var(--color-white);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-section .section-pre-title {
    color: var(--color-yellow);
}

.about-section .section-title {
    color: var(--color-white);
    max-width: 90%;
}

.about-lead {
    font-family: var(--font-roboto);
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-lead strong {
    color: var(--color-yellow);
    font-weight: 500;
}

/* --- Vision/Mission Card Styles (NEW DESIGN) --- */
.vision-mission-card {
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-top: 5px solid;
    /* Placeholder for color accent */
}

/* Vision Card: Use Electric Green accent */
.mission-card-vision {
    /* background: var(--color-black); */
    border-color: var(--color-green);
}

.mission-card-vision:hover {
    box-shadow: 0 8px 25px rgba(135, 192, 96, 0.4);
}

/* Mission Card: Use Energetic Yellow accent */
.mission-card-mission {
    /* background: var(--color-black); */
    border-color: var(--color-yellow);
}

.mission-card-mission:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.vision-title,
.mission-title {
    font-family: var(--font-poppins);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.vision-title {
    color: var(--color-green);
}

.mission-title {
    color: var(--color-yellow);
}


.vision-mission-card i {
    font-size: 1.5rem;
}

.vision-text,
.mission-text {
    font-family: var(--font-roboto);
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.vision-text strong,
.mission-text strong {
    font-weight: 700;
    /* Ensure strong is bold */
}

/* --- Image Styling --- */
.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-img-container {
        text-align: center;
    }

    .about-img {
        max-width: 400px;
    }
}












/* === Contact Section Styles (V3 - Cleaner, Lighter) === */
.contact-section {
    background: var(--color-style-guide-bg);
    /* Soft light background */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-title {
    color: var(--color-black);
}

.contact-subtitle {
    color: var(--color-grey);
}

/* --- Contact Info Card (V3 - Cleaner Dark Card) --- */
.contact-info-card-v3 {
    background: var(--color-secondary-bg);
    color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-title-v3 {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-group-v3 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-group-v3 i {
    color: var(--color-yellow);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
    min-width: 20px;
}




.contact-icon-circle {
    background: rgba(135, 192, 96, 0.15);
    color: var(--color-green);
    border-radius: 50%;
    padding: 10px;
    font-size: 1.1rem;
    margin-right: 20px;
    margin-top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-data-v3 {
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-roboto);
    font-size: 0.95rem;
    color: #cccccc;
}

.info-data-v3 a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.info-data-v3 a:hover {
    color: var(--color-yellow);
}

/* --- Contact Form Card (V3) --- */
.contact-form-card-v3 {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* --- Form Elements (Reusing existing form-control styles) --- */
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}


.form-control {
    padding: .75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: .8rem;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-bottom: 2px solid var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: none;
}


.contact-section button {
    border: none;
    background-color: var(--color-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}



















/* === Footer Styles (V3 - Classic Multi-Column) === */
.main-footer-v3 {
    /* background: var(--color-black);  */
    background: var(--color-accent-dark);
    color: #cccccc;
    font-family: var(--font-roboto);
}

.footer-logo-v3 img {
    height: 35px;
}

.footer-text-v3 {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-heading-v3 {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links-v3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-v3 li {
    margin-bottom: 10px;
}

.footer-links-v3 a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links-v3 a:hover {
    color: var(--color-yellow);
}

/* Footer Social Icons */
.social-icon-footer-v3 {
    color: var(--color-green);
    /* font-size: 1.3rem; */
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 0.5rem;
    border-radius: 50%;
    text-align: center;
    transition: color 0.3s, transform 0.3s;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
}


.social-icon-footer-v3:hover {
    color: var(--color-yellow);
    transform: translateY(-2px);
}

.footer-divider-v3 {
    border-top: 1px solid var(--color-grey);
    opacity: 0.2;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-copyright-v3 {
    font-size: 0.85rem;
    color: #888888;
}







































/* ============= Icons ==============  */

.social-float {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 20px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    z-index: 100;
    transform: all 0.5s ease;
    line-height: 46px;
}

.social-float::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.whatsapp-float {
    background-color: #25d366;
    bottom: 140px;
}

.whatsapp-float::before {
    background-color: #25d366;
}

.instagram-float {
    background: radial-gradient(circle at 30% 30%, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    bottom: 200px;
}

.instagram-float::before {
    background: radial-gradient(circle at 30% 30%, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube-float {
    background-color: #ff0000;
    bottom: 320px;
}

.youtube-float::before {
    background-color: #ff0000;
}

.social-icon {
    margin-top: 12px;
}

/* Keyframes for the pulse effect */
@keyframes pulse-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 38px;
        right: 10px;
    }

    .social-icon {
        line-height: 0.8 !important;
    }

    .whatsapp-float {
        bottom: 100px;
        display: none;
    }

    .instagram-float {
        bottom: 150px;
    }
}
