/* ================================
   GENERAL STYLES
   ================================ */

:root {
    --primary-green: #27ae60;
    --dark-green: #1e8449;
    --light-green: #d5f4e6;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ================================
   NAVBAR STYLES
   ================================ */

.navbar {
    background: linear-gradient(135deg, #4A3728 0%, #2F251A 100%) !important;
    border-bottom: 2px solid var(--light-green);
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.navbar-brand:hover {
    transform: translateX(5px);
}

.navbar-nav .nav-link {
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    color: white !important;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #FFD700 !important;
}

/* Isolated Language Dropdown */
.navbar-nav .nav-item.dropdown {
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

.navbar-nav .nav-item.dropdown .nav-link {
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

/* ================================
   LANGUAGE SELECTOR
   ================================ */

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

.navbar-nav .dropdown-toggle::before {
    content: '';
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    background: #FFD700;
    margin-left: 0.5em;
    vertical-align: 0.125em;
}

.language-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 0;
    min-width: 300px;
    max-width: 380px;
    
    /* Let Bootstrap Popper.js handle positioning */
    transform-origin: top right;
    will-change: transform, opacity;
    
    /* Prevent layout shift */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    
    /* Ensure all clicks work */
    pointer-events: auto;
    z-index: 1050;
}

.language-menu-grid {
    display: flex;
    flex-direction: column;
}

.language-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.05), rgba(39, 174, 96, 0.05));
    position: relative;
    z-index: 10;
}

.language-header h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.language-header .btn-close {
    position: relative;
    z-index: 20;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto !important;
    padding: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    margin: 0;
    flex-shrink: 0;
}

.language-header .btn-close:hover {
    opacity: 1;
    transform: scale(1.2) rotate(90deg);
}

.language-header .btn-close:active {
    opacity: 0.8;
    transform: scale(0.95);
}

.language-header small {
    color: #7f8c8d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-header .btn-close {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.language-header .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.language-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px;
    pointer-events: auto;
}

.recommended-languages {
    grid-template-columns: repeat(3, 1fr);
    pointer-events: auto;
}

.language-section-header {
    padding: 8px 20px 4px;
    background: rgba(0, 0, 0, 0.02);
    pointer-events: auto;
}

.language-section-header small {
    color: #7f8c8d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    pointer-events: auto;
}

.all-languages {
    display: grid;
    pointer-events: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px;
}

.lang-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    background-color: transparent !important;
    outline: none;
    pointer-events: auto;
    z-index: 5;
}

.lang-option:link,
.lang-option:visited {
    color: var(--text-dark);
    text-decoration: none;
}

.lang-option:active {
    background-color: transparent !important;
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.15), rgba(39, 174, 96, 0.15));
    color: var(--primary-green);
    border-color: rgba(39, 174, 96, 0.3);
    transform: translateX(2px);
    text-decoration: none;
}

.lang-flag {
    font-size: 1.4rem;
    min-width: 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

.lang-option:hover .lang-flag {
    transform: scale(1.2) rotate(5deg);
}

.lang-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-menu .dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 3px 8px;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.language-menu .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-green), #20c997);
    color: #fff;
    transform: translateX(5px);
}

.language-menu .dropdown-item i {
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.language-menu .dropdown-item:hover i {
    transform: rotate(10deg) scale(1.1);
}

#currentLanguage {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive language menu */
@media (max-width: 768px) {
    .navbar-nav .dropdown-toggle::before {
        width: 0.25em;
        height: 0.25em;
    }
    
    .language-menu {
        min-width: 130px;
    }
    
    .language-menu .dropdown-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><defs><linearGradient id="hillGrad1" x1="0%25" y1="0%25" x2="0%25" y2="100%25"><stop offset="0%25" style="stop-color:rgba(255,255,255,0.15);stop-opacity:1" /><stop offset="100%25" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /></linearGradient><linearGradient id="hillGrad2" x1="0%25" y1="0%25" x2="0%25" y2="100%25"><stop offset="0%25" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%25" style="stop-color:rgba(0,0,0,0.1);stop-opacity:1" /></linearGradient></defs><path d="M0,300 Q360,200 720,300 T1440,300 L1440,600 L0,600 Z" fill="url(%23hillGrad1)"/><path d="M0,350 Q300,250 600,350 T1200,350 T1440,350 L1440,600 L0,600 Z" fill="url(%23hillGrad2)"/><path d="M0,400 Q200,300 400,400 Q600,500 800,400 Q1000,300 1200,400 Q1300,450 1440,400 L1440,600 L0,600 Z" fill="rgba(255,255,255,0.08)"/><g opacity="0.25"><rect x="100" y="320" width="20" height="80" fill="%23654321"/><circle cx="110" cy="320" r="15" fill="%23228B22"/><circle cx="105" cy="310" r="10" fill="%2332CD32"/><circle cx="115" cy="315" r="12" fill="%2332CD32"/></g><g opacity="0.25"><rect x="300" y="340" width="22" height="70" fill="%23654321"/><circle cx="311" cy="340" r="16" fill="%23228B22"/><circle cx="305" cy="328" r="11" fill="%2332CD32"/><circle cx="318" cy="333" r="13" fill="%2332CD32"/></g><g opacity="0.25"><rect x="800" y="280" width="25" height="100" fill="%23654321"/><circle cx="812" cy="280" r="20" fill="%23228B22"/><circle cx="805" cy="265" r="12" fill="%2332CD32"/><circle cx="820" cy="270" r="14" fill="%2332CD32"/><circle cx="815" cy="260" r="10" fill="%2332CD32"/></g><g opacity="0.25"><rect x="1050" y="320" width="24" height="80" fill="%23654321"/><circle cx="1062" cy="320" r="18" fill="%23228B22"/><circle cx="1055" cy="305" r="11" fill="%2332CD32"/><circle cx="1070" cy="310" r="13" fill="%2332CD32"/></g><g opacity="0.2"><line x1="200" y1="420" x2="240" y2="480" stroke="%23DAA520" stroke-width="3"/><line x1="240" y1="420" x2="280" y2="480" stroke="%23DAA520" stroke-width="3"/><line x1="280" y1="420" x2="320" y2="480" stroke="%23DAA520" stroke-width="3"/><line x1="320" y1="420" x2="360" y2="480" stroke="%23DAA520" stroke-width="3"/></g><g opacity="0.2"><line x1="650" y1="380" x2="680" y2="440" stroke="%23DAA520" stroke-width="3"/><line x1="680" y1="380" x2="710" y2="440" stroke="%23DAA520" stroke-width="3"/><line x1="710" y1="380" x2="740" y2="440" stroke="%23DAA520" stroke-width="3"/><line x1="740" y1="380" x2="770" y2="440" stroke="%23DAA520" stroke-width="3"/></g><g opacity="0.2"><line x1="1100" y1="420" x2="1140" y2="480" stroke="%23DAA520" stroke-width="3"/><line x1="1140" y1="420" x2="1180" y2="480" stroke="%23DAA520" stroke-width="3"/><line x1="1180" y1="420" x2="1220" y2="480" stroke="%23DAA520" stroke-width="3"/><line x1="1220" y1="420" x2="1260" y2="480" stroke="%23DAA520" stroke-width="3"/></g></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
    z-index: 1;
}

.hero-section .d-flex {
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-section .btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.hero-section .btn-success {
    background-color: #fff;
    color: var(--primary-green);
}

.hero-section .btn-success:hover {
    background-color: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-outline-light {
    color: #fff;
    border: 2px solid #fff;
}

.hero-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ================================
   SECTION STYLES
   ================================ */

section {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ================================
   ABOUT SECTION
   ================================ */

#about {
    background: #fff;
    padding: 80px 0;
}

#about .about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    color: var(--light-green);
}

#about h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

#about p {
    font-size: 1rem;
    line-height: 1.8;
}

#about ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

#about ul li:hover {
    padding-left: 10px;
}

/* ================================
   SERVICES SECTION
   ================================ */

#services {
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
    border-color: var(--primary-green);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background: var(--light-green);
    border-radius: 8px;
    font-size: 2rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.1);
}

.service-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   PRODUCTS SECTION
   ================================ */

#products {
    padding: 80px 0;
    background: #fff;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
    border-color: var(--primary-green);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--light-green);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 3.5rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.product-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

.product-card .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
}

.why-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ================================
   STATISTICS SECTION
   ================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 80px 0;
    color: #fff;
}

.stats-section .counter {
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stats-section p {
    font-size: 1.1rem;
    margin: 0;
}

.stats-section > .container > .row > div {
    transition: all 0.3s ease;
}

.stats-section > .container > .row > div:hover {
    transform: scale(1.05);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

#testimonials,
.testimonial-card {
    background: #fff;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
}

.testimonial-card .stars {
    display: flex;
    gap: 5px;
}

.testimonial-card .rating-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0.5rem 0;
}

.testimonial-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

/* Pagination Styles */
.pagination {
    gap: 5px;
}

.page-link {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 5px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.page-link:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.page-item.disabled .page-link {
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ================================
   CONTACT SECTION
   ================================ */

#contact {
    padding: 80px 0;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
}

.contact-info h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}

.contact-form {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ================================
   MODERN ECOMMERCE FOOTER
   ================================ */

.modern-footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0d0f15 100%);
    color: #fff;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.5), transparent);
}

/* Footer Top Section */
.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-section {
    animation: fadeInUp 0.6s ease;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.05);
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--primary-green);
    margin: 5px 0 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    color: #aaa;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 15px 0 25px;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(39, 174, 96, 0.08);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(39, 174, 96, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    background: var(--primary-green);
    border: none;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #1e8449;
}

/* Footer Columns */
.footer-column {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }
.footer-column:nth-child(5) { animation-delay: 0.4s; }

.footer-column-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
}

.footer-column-title i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

/* Contact Info Block */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 3px;
    font-weight: 700;
}

.contact-item a,
.contact-item p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

/* Footer Middle Section */
.footer-middle {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Payment Section */
.payment-section {
    background: rgba(39, 174, 96, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(39, 174, 96, 0.15);
    text-align: center;
}

.payment-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-title i {
    color: var(--primary-green);
}

.payment-methods {
    display: flex;
    gap: 12px;
    justify-content: center;
    font-size: 1.8rem;
}

.payment-methods i {
    color: #aaa;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.payment-methods i:hover {
    color: var(--primary-green);
    opacity: 1;
    transform: translateY(-3px);
}

/* Trust Section */
.trust-section {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 8px;
    flex: 1;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.trust-badge p {
    font-size: 0.75rem;
    color: #aaa;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

/* Social Section */
.social-section {
    text-align: center;
}

.social-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links-modern {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: #fff;
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 40px 0 20px;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

.footer-bottom-links .divider {
    color: #444;
}

.footer-message {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    margin-top: 15px;
}

.footer-message i {
    color: var(--primary-green);
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    75% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .modern-footer {
        padding-top: 40px;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .footer-brand {
        flex-wrap: wrap;
    }

    .footer-column-title {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-middle {
        padding: 30px 0;
    }

    .trust-section {
        gap: 8px;
    }

    .trust-badge {
        padding: 10px;
    }

    .trust-badge i {
        font-size: 1.2rem;
    }

    .trust-badge p {
        font-size: 0.7rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-copyright {
        text-align: center;
        font-size: 0.85rem;
    }

    .footer-message {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding-top: 30px;
    }

    .footer-top {
        padding-bottom: 20px;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-column-title {
        font-size: 0.8rem;
    }

    .footer-links {
        column-count: 2;
    }

    .footer-middle {
        padding: 20px 0;
    }

    .payment-methods {
        font-size: 1.4rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 30px 0 15px;
    }

    .footer-bottom-links {
        font-size: 0.8rem;
    }
}

/* ================================
   MODAL STYLES
   ================================ */

.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: var(--light-green);
    border: none;
    border-bottom: 2px solid var(--primary-green);
}

.modal-header .modal-title {
    color: var(--primary-green);
    font-weight: 700;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Rating Input Styles */
.rating-input {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    margin: 1rem 0;
}

.star-icon {
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-icon:hover,
.star-icon.active {
    color: #ffc107;
    transform: scale(1.2);
}

#ratingText {
    font-weight: 600;
    color: var(--primary-green);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-image {
        font-size: 8rem;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    #about .about-image {
        font-size: 8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-section .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }

    .hero-section .btn {
        width: 100%;
    }

    .hero-image {
        font-size: 6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .product-card,
    .why-card {
        margin-bottom: 2rem;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .stats-section h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 60px;
    }

    .hero-image,
    #about .about-image {
        font-size: 4rem;
    }

    .service-icon,
    .product-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card,
    .product-card,
    .why-card,
    .contact-info {
        padding: 20px;
    }

    .contact-form {
        padding: 15px;
    }

    .stats-section h3 {
        font-size: 1.5rem;
    }

    .stats-section p {
        font-size: 0.9rem;
    }

    .modal-body {
        padding: 15px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.transition-all {
    transition: all 0.3s ease;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.rounded-lg {
    border-radius: 10px;
}

/* ================================
   ANIMATIONS
   ================================ */

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

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

.animate-slide-left {
    animation: slideInLeft 0.6s ease;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease;
}

/* ================================
   ECOMMERCE BOOKING FORM STYLES
   ================================ */

/* Modal Customization */
.ecommerce-modal {
    max-height: 95vh;
    margin-top: 2.5rem;
}

.ecommerce-modal .modal-dialog {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ecommerce-booking-form {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Header Styling */
.ecommerce-header {
    background: linear-gradient(135deg, #1a6b3a 0%, #1e8449 40%, var(--primary-green) 70%, #20c997 100%);
    border: none;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ecommerce-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.ecommerce-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    animation: slideInDown 0.6s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: scale(1);
}

.booking-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    animation: slideInDown 0.8s ease-out, titleGlow 2s ease-in-out infinite;
}

.booking-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.ecommerce-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease;
    border: none;
    opacity: 1;
}

.ecommerce-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Body Styling */
.ecommerce-body {
    padding: 2.5rem;
    max-height: calc(95vh - 200px);
    overflow-y: auto;
}

.ecommerce-body::-webkit-scrollbar {
    width: 6px;
}

.ecommerce-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.ecommerce-body::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.ecommerce-body::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* Form Styling */
.ecommerce-form {
    animation: fadeInUp 0.6s ease 0.1s both;
}

/* Booking Platforms Section */
.booking-platforms {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.1);
    margin-bottom: 2rem;
}

.platform-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    border: 2px solid transparent;
}

.airbnb-btn {
    background: linear-gradient(135deg, #FF5A5F 0%, #E31C1C 100%);
}

.airbnb-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 90, 95, 0.3);
    border-color: #FF5A5F;
}

.booking-btn {
    background: linear-gradient(135deg, #003580 0%, #00164f 100%);
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 53, 128, 0.3);
    border-color: #003580;
}

.divider-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 1rem 0;
    position: relative;
}

.divider-text::before,
.divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 40px);
    height: 1px;
    background: #e0e0e0;
}

.divider-text::before {
    left: 0;
}

.divider-text::after {
    right: 0;
}

/* Form Section Styling */
.form-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease both;
}

.section-header {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a5a3d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-green);
}

.section-header i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Form Group Styling */
.form-group {
    position: relative;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a3a2a;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Input Wrapper with Icons */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--primary-green);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.ecommerce-input {
    padding: 14px 14px 14px 44px;
    border: 2px solid #d0d0d0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a3a2a;
    width: 100%;
}

.ecommerce-input::placeholder {
    color: #999;
    font-weight: 400;
}

.ecommerce-input:focus {
    border-color: var(--primary-green);
    background: #fafbfc;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
    outline: none;
}

.ecommerce-input:focus + i,
.input-wrapper:has(.ecommerce-input:focus) i {
    color: var(--primary-green);
}

.ecommerce-textarea {
    padding: 12px 14px;
    resize: vertical;
    font-family: inherit;
}

/* Select Styling */
.ecommerce-select {
    padding: 14px 40px 14px 14px;
    border: 2px solid #d0d0d0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2327ae60' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-color: #ffffff;
    color: #1a3a2a;
    width: 100%;
    appearance: none;
}

.ecommerce-select:focus {
    border-color: var(--primary-green);
    background-color: #fafbfc;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
    outline: none;
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.12) 0%, rgba(32, 201, 151, 0.12) 100%);
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    animation: slideInUp 0.6s ease;
    transition: all 0.3s ease;
    transform-origin: center;
}

.price-display:hover {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15) 0%, rgba(32, 201, 151, 0.15) 100%);
    border-color: rgba(39, 174, 96, 0.4);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a3a2a;
    gap: 1.5rem;
}

.price-amount {
    color: #999;
    font-size: 1.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: right;
}

@keyframes priceUpdate {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Submit Button */
.ecommerce-btn-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

.ecommerce-btn-submit:hover {
    background: linear-gradient(135deg, #20c997 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    color: white;
}

.ecommerce-btn-submit:active {
    transform: translateY(0);
}

/* Security Badge */
.security-badge {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-badge i {
    color: var(--primary-green);
    font-size: 0.95rem;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Animation on Focus */
@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.2);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
    }
}

/* Title Glow Animation */
@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2), -1px 1px 0 rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

/* Responsive Design for Ecommerce Form */
@media (max-width: 768px) {
    .ecommerce-header {
        padding: 2.5rem 1.5rem;
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-subtitle {
        font-size: 1rem;
    }

    .ecommerce-body {
        padding: 1.5rem;
        max-height: calc(95vh - 180px);
    }

    .ecommerce-input,
    .ecommerce-select,
    .ecommerce-textarea {
        font-size: 16px;
    }

    .section-header {
        font-size: 0.85rem;
    }

    .price-display {
        padding: 1rem;
    }

    .ecommerce-btn-submit {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .platform-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ecommerce-modal {
        margin-top: 1rem;
    }

    .ecommerce-header {
        padding: 2rem 1rem;
    }

    .booking-title {
        font-size: 1.7rem;
    }

    .ecommerce-body {
        padding: 1rem;
    }

    .form-section {
        margin-bottom: 1.5rem;
    }

    .ecommerce-input {
        padding: 11px 11px 11px 38px;
        font-size: 16px;
    }

    .input-wrapper i {
        left: 11px;
    }
}

/* ================================
   ENHANCED FORMS (Universal Styling)
   ================================ */

.enhanced-form,
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.1);
}

.enhanced-form label,
.contact-form label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.form-icon {
    color: var(--primary-green);
    margin-right: 0.6rem;
    font-size: 1rem;
    min-width: 1.1rem;
}

.form-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.form-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.12);
}

.form-input:valid {
    border-color: #28a745;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Validation Icon */
.validation-icon {
    position: absolute;
    right: 10px;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.form-input:valid ~ .validation-icon {
    opacity: 1;
}

.form-input:invalid:not(:placeholder-shown) ~ .validation-icon {
    opacity: 1;
    color: #dc3545;
}

/* Form Feedback */
.form-feedback {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    color: #dc3545;
    opacity: 0;
    transition: all 0.3s ease;
}

.form-feedback.show {
    opacity: 1;
}

.form-feedback.success {
    color: #28a745;
}

/* Enhanced Select */
.enhanced-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2327ae60' d='M1 4l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

/* Rating Input */
.rating-input {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.15);
    width: fit-content;
}

.star-icon {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-icon:hover {
    color: #ffc107;
    transform: scale(1.15);
}

.star-icon.active {
    color: #ffc107;
}

/* ================================
   TOAST NOTIFICATION ANIMATIONS
   ================================ */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(400px);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
    to {
        opacity: 0;
        transform: translateX(400px);
        visibility: hidden;
    }
}

.rating-display {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.rating-value {
    color: #888;
    font-size: 0.85rem;
}

/* Character Counter */
.char-counter {
    position: absolute;
    right: 12px;
    top: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.8rem;
    background: linear-gradient(135deg, var(--primary-green), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.char-total {
    color: #999;
    font-weight: 400;
    -webkit-text-fill-color: #999;
    background: none;
}

/* Modal Body Enhanced Forms */
.modal-body .enhanced-form {
    padding: 20px 0;
    background: transparent;
    border: none;
}

.modal-body .form-group {
    margin-bottom: 1.2rem;
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(32, 201, 151, 0.1));
    padding: 16px;
    border-radius: 10px;
    border: 2px solid rgba(39, 174, 96, 0.2);
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-amount {
    color: var(--primary-green);
    font-size: 1.3rem;
}

/* Security Badge */
.security-badge {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #888;
}

.security-badge::before {
    content: '🔒 Secure Payment Processing';
    display: block;
}



.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-label i {
    color: var(--primary-green);
    margin-right: 0.7rem;
    font-size: 1.1rem;
    min-width: 1.2rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.textarea-wrapper {
    align-items: flex-start;
    padding-top: 5px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 1;
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.form-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.form-input:valid {
    border-color: #28a745;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Validation Icon */
.validation-icon {
    position: absolute;
    right: 12px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.form-input:valid ~ .validation-icon {
    opacity: 1;
    animation: slideInRight 0.3s ease;
}

.form-input:invalid:not(:placeholder-shown) ~ .validation-icon {
    opacity: 1;
    color: #dc3545;
}

/* Character Counter */
.char-counter {
    position: absolute;
    right: 12px;
    top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--primary-green), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.char-total {
    color: #999;
    font-weight: 400;
    -webkit-text-fill-color: #999;
    background: none;
}

.char-progress {
    position: absolute;
    bottom: 2px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.char-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #20c997);
    width: 0%;
    transition: width 0.2s ease;
    border-radius: 10px;
}

.textarea-wrapper {
    position: relative;
}

.char-counter {
    top: 15px !important;
}

/* Form Feedback Messages */
.form-feedback {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
    transition: all 0.3s ease;
    color: #dc3545;
    opacity: 0;
}

.form-feedback.show {
    opacity: 1;
}

.form-feedback.success {
    color: #28a745;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1e8449 100%);
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: inline;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    animation: fadeInForm 0.5s ease both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

.contact-form .row > div {
    animation: fadeInForm 0.5s ease both;
}

.contact-form .row > div:nth-child(1) { animation-delay: 0.1s; }
.contact-form .row > div:nth-child(2) { animation-delay: 0.2s; }
.contact-form .row > div:nth-child(3) { animation-delay: 0.3s; }
.contact-form .row > div:nth-child(4) { animation-delay: 0.4s; }
.contact-form .row > div:nth-child(5) { animation-delay: 0.5s; }

/* Mobile Responsiveness for Enhanced Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .char-counter {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-control {
        padding: 11px 12px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 11px 20px;
        font-size: 0.95rem;
    }

    .validation-icon {
        right: 8px;
        font-size: 1rem;
    }

    .char-counter {
        font-size: 0.7rem;
        right: 8px;
        top: 8px;
    }

    /* Language Menu - Mobile Responsive */
    .language-menu-grid {
        min-width: 300px !important;
        max-width: 90vw !important;
    }

    .all-languages {
        grid-template-columns: repeat(2, 1fr);
    }

    .lang-column {
        gap: 4px;
    }

    .lang-option {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .lang-flag {
        font-size: 1.2rem;
    }

    .language-header {
        padding: 12px 16px;
    }

    .language-section {
        padding: 10px 12px;
        gap: 6px;
    }
}
