/* ===============================================
   COMPLETE STYLE.CSS - Greenwood Philippines
   Refined palette: #648E37 primary vibrant green,
   #303823 dark depth, #504d2c mid-tone
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===============================================
   CSS VARIABLES
   =============================================== */
:root {
    --green-primary:  #648E37;  /* vibrant green — buttons, accents, card titles */
    --green-hover:    #527230;  /* slightly deeper for hover */
    --green-dark:     #303823;  /* dark olive — footer, hero bg, deep elements */
    --green-mid:      #504d2c;  /* khaki — gradient second stop */
    --green-light:    #eef4e6;  /* light green tint — hover backgrounds */
    --green-xlight:   #f6faf0;  /* near-white green — subtle section bg */
    --green-accent:   #8fba52;  /* lighter accent for text on dark bg */
    --border-light:   #e4e8df;
}

/* ===============================================
   RESET & BASE
   =============================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #444;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

/* ===============================================
   MODAL FIX
   =============================================== */
.modal-backdrop { width: 100vw; max-width: 100%; overflow: hidden; }
.modal { overflow-x: hidden; padding-right: 0 !important; width: 100%; max-width: 100vw; }
body.modal-open { padding-right: 0 !important; overflow-x: hidden; }
html.modal-open { padding-right: 0 !important; overflow-x: hidden; }

/* ===============================================
   NAVBAR
   =============================================== */
.navbar { transition: all 0.3s ease; padding: 1rem 0; }
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.10) !important;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(8px);
}
.navbar-brand .brand-logo { display: flex; align-items: center; gap: 10px; }
.navbar-brand .brand-logo img { width: 30px; height: 30px; }
.navbar-brand .brand-logo .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand .brand-logo strong { font-size: 1.2rem; color: var(--green-dark); font-weight: 700; }
.navbar-brand .brand-logo span { font-size: 0.7rem; color: #888; font-weight: 400; letter-spacing: 1px; }
.navbar-nav .nav-link {
    color: var(--green-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar-brand, .navbar { font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.navbar-nav .nav-link:hover { color: var(--green-primary); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }

/* ===============================================
   SCROLL OFFSET FOR FIXED NAVBAR
   =============================================== */
#home, #products, #projects, #influencers, #about, #locations {
    scroll-margin-top: 60px;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background-color: var(--green-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        140deg,
        rgba(48, 56, 35, 0.85) 0%,
        rgba(80, 77, 44, 0.6) 55%,
        rgba(30, 45, 18, 0.80) 100%
    );
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-text { color: white; }

.brand-tag {
    font-size: 0.8rem;
    color: var(--green-accent);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-tag::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--green-accent);
    border-radius: 2px;
}

.hero-text h1 { font-size: 4.5rem; font-weight: 800; margin-bottom: 1.5rem; color: white; line-height: 1.1; }
.hero-text .highlight { color: var(--green-accent); }
.hero-tagline { font-size: 1.4rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; line-height: 1.6; }

.cta-button {
    background: var(--green-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--green-primary);
    box-shadow: 0 4px 20px rgba(100,142,55,0.45);
}
.cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ===============================================
   PRODUCTS SECTION
   =============================================== */
#products {
    min-height: 100vh;
    padding: 60px 0 72px;
    position: relative;
    z-index: 10;
    background: white;
    box-sizing: border-box;
}

#products .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(100,142,55,0.18);
    border-color: var(--green-primary);
}

.product-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 14px 14px 0 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.product-card:hover .product-image { transform: scale(1.05); }

.product-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-primary);
    margin: 0 0 12px;
    line-height: 1.3;
}
.product-content p { font-size: 0.9rem; color: #666; line-height: 1.7; margin: 0; }

.location-link { text-decoration: none !important; color: inherit; display: block; }
.location-link:hover { text-decoration: none !important; color: inherit; }

.wall-img    { background-image: url("../assets/images/wall.jpg"); }
.floor-img   { background-image: url("../assets/images/floor.jpg"); }
.ceiling-img { background-image: url("../assets/images/ceiling.jpg"); }
.fence-img   { background-image: url("../assets/images/fence.png"); }

/* ===============================================
   ABOUT SECTION
   =============================================== */
#about {
    min-height: 100vh;
    padding: 60px 0 72px;
    position: relative;
    z-index: 10;
    background: var(--green-xlight);
    box-sizing: border-box;
}

.about-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(100,142,55,0.08);
    border: 1px solid var(--border-light);
    height: 100%;
}
.about-card h3 {
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
    color: var(--green-dark);
}
.about-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url('../assets/images/nobg.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

/* ===============================================
   LOCATION CARDS
   =============================================== */
.location-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    will-change: auto;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .location-card:hover {
        border-color: var(--green-primary);
        box-shadow: 0 10px 36px rgba(100,142,55,0.18);
        transform: translateY(-5px);
    }
}

@media (hover: none) {
    .location-card:hover,
    .location-link:hover .location-card,
    .location-link:active .location-card {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(100,142,55,0.10);
        border-color: var(--green-primary);
    }
}

.location-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(100,142,55,0.3);
}
.location-icon img,
.location-pin-icon {
    width: 35px !important;
    height: 35px !important;
    filter: brightness(0) invert(1);
    object-fit: contain;
}
.location-icon svg { width: 35px; height: 35px; stroke: white; stroke-width: 2.5; }

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    text-align: center;
    width: 100%;
    align-items: center;
}
.location-content h4 { color: var(--green-dark); margin-bottom: 0.8rem; font-size: 1.5rem; font-weight: 700; }
.location-content p  { color: #666; font-size: 1rem; margin-bottom: 0.4rem; line-height: 1.6; }

.location-text-content { flex-grow: 1; }

.location-contact-button {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
    width: 100%;
}

.location-link {
    display: flex !important;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
}

@media (min-width: 769px) {
    .location-content { min-height: 200px; }
}

.btn-location-contact {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%);
    color: white;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(100,142,55,0.25);
}
.btn-location-contact:hover {
    background: linear-gradient(135deg, var(--green-hover) 0%, var(--green-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(100,142,55,0.35);
}
.btn-location-contact:active,
.btn-location-contact:focus {
    background: linear-gradient(135deg, var(--green-hover) 0%, var(--green-dark) 100%);
    color: white !important;
    outline: none;
    box-shadow: none;
}

/* ===============================================
   CONTACT MODAL
   =============================================== */
.contact-card {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.contact-card:hover { background: var(--green-light); border-color: var(--green-primary); }
.contact-card:last-child { margin-bottom: 0 !important; }
.modal-content { border-radius: 16px; border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important; }
.modal-header { padding: 1.5rem 1.5rem 1rem; border-bottom: 2px solid #e9ecef !important; }
.modal-body   { padding: 1rem 1.5rem 1.5rem; }

/* ===============================================
   MODAL BUTTONS
   =============================================== */
.btn-success             { background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%) !important; border: none !important; box-shadow: 0 3px 12px rgba(100,142,55,0.3) !important; }
.btn-success:hover       { background: linear-gradient(135deg, var(--green-hover) 0%, var(--green-dark) 100%) !important; }
.btn-outline-success     { color: var(--green-primary) !important; border-color: var(--green-primary) !important; }
.btn-outline-success:hover { background: var(--green-primary) !important; border-color: var(--green-primary) !important; color: white !important; }
.btn-outline-success:focus,
.btn-outline-success:active { outline: none; box-shadow: none; }
.badge.bg-success { background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%) !important; }

/* ===============================================
   COMING SOON / OPERATING HOURS
   =============================================== */
.coming-soon-section { background: #f9f9f9; padding: 3rem; border-radius: 16px; margin-top: 3rem; }
.coming-soon-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px dashed var(--green-primary);
    transition: all 0.3s ease;
}
.coming-soon-card:hover { background: var(--green-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(100,142,55,0.12); }
.coming-icon { font-size: 2rem; margin-bottom: 1rem; }
.coming-soon-card h5 { color: var(--green-dark); margin: 0; font-weight: 700; }

.operating-hours {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 3rem;
}
.hours-info { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-info p { margin: 0; font-size: 1.05rem; line-height: 1.6; color: #2d2d2d; }
.hours-info p strong { color: var(--green-dark); font-weight: 700; }

.visit-btn {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    border: 2px solid transparent !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(100,142,55,0.35) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
}
.visit-btn:hover {
    background: transparent !important;
    color: var(--green-primary) !important;
    border-color: var(--green-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(100,142,55,0.18) !important;
}

/* ===============================================
   PROJECTS SECTION
   =============================================== */
#projects {
    min-height: 100vh;
    padding: 60px 0 72px;
    position: relative;
    z-index: 10;
    background: var(--green-xlight);
    box-sizing: border-box;
}

/* ===============================================
   CAROUSEL
   =============================================== */
.project-carousel { position: relative; }

.project-carousel .carousel-inner { overflow: hidden; position: relative; width: 100%; }

.project-carousel .carousel-item {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    opacity: 0;
    transform: translateX(30px);
}

.project-carousel .carousel-item.active { opacity: 1; transform: translateX(0); }
.project-carousel .carousel-item-next,
.project-carousel .carousel-item-prev { opacity: 0; }
.project-carousel .carousel-item-next.carousel-item-start,
.project-carousel .carousel-item-prev.carousel-item-end { opacity: 1; transform: translateX(0); }
.project-carousel .carousel-item.active.carousel-item-start { opacity: 0; transform: translateX(-30px); }
.project-carousel .carousel-item.active.carousel-item-end { opacity: 0; transform: translateX(30px); }

#projects .col-md-4  { display: flex; }
#influencers .col-md-4 { display: flex; }

#projects .product-catalog-card-link,
#influencers .product-catalog-card-link { display: block; width: 100%; }

#projects .carousel-item .row .col-md-4:only-child,
#influencers .carousel-item .row .col-md-4:only-child { flex: 0 0 100%; max-width: 100%; }
#projects .carousel-item .row:has(.col-md-4:nth-child(2):last-child) .col-md-4,
#influencers .carousel-item .row:has(.col-md-4:nth-child(2):last-child) .col-md-4 { flex: 0 0 50%; max-width: 50%; }

#projects a,   #projects a:hover,   #projects a:focus,   #projects a:active   { text-decoration: none !important; }
#influencers a, #influencers a:hover, #influencers a:focus, #influencers a:active { text-decoration: none !important; }

#projects .product-catalog-card,
#influencers .product-catalog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 430px;
    flex-shrink: 0;
}

#projects .product-catalog-card:hover,
#influencers .product-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(100,142,55,0.18);
    border-color: var(--green-primary);
}

#projects .product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}
#projects .product-catalog-card:hover .product-hover-overlay { opacity: 1; }
#projects .hover-text { color: #2d2d2d; font-size: 0.95rem; font-weight: 600; text-align: center; padding: 0 20px; }

#influencers .product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(100,142,55,0.85);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}
#influencers .product-catalog-card:hover .product-hover-overlay { opacity: 1; }
#influencers .hover-text { color: #fff; font-size: 0.95rem; font-weight: 700; text-align: center; padding: 0 20px; display: flex; align-items: center; gap: 8px; }

#projects .product-image-wrapper,
#influencers .product-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    background: #f0f0f0;
}

#projects .product-image-wrapper img.product-image,
#influencers .product-image-wrapper img.product-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    transition: transform 0.35s ease !important;
}

#influencers .product-image-wrapper img.product-image { object-position: top center !important; }

#projects .product-catalog-card:hover .product-image-wrapper img.product-image,
#influencers .product-catalog-card:hover .product-image-wrapper img.product-image {
    transform: scale(1.05) !important;
}

#influencers .product-image-wrapper.placeholder-image {
    background: linear-gradient(135deg, var(--green-light) 0%, #d0e8c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#influencers .product-image-wrapper.placeholder-image::after { content: '📷'; font-size: 3rem; opacity: 0.4; }

#projects .product-info,
#influencers .product-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 0 0 90px;
    height: 90px;
    overflow: hidden;
    background: #fff;
}

#projects .product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-primary);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none !important;
}
#projects .product-description {
    font-size: 0.82rem;
    color: #8B7355;
    font-weight: 500;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

#influencers .inf-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 8px;
    align-self: flex-start;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
#influencers .product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none !important;
}
#influencers .product-description {
    font-size: 0.82rem;
    color: #8B7355;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

@keyframes projectFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes influencerFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

#projects .project-item-anim   { animation: projectFadeUp 0.45s ease-out both; }
#influencers .project-item-anim { animation: influencerFadeUp 0.45s ease-out both; }
#projects .project-item-anim:nth-child(1), #influencers .project-item-anim:nth-child(1)  { animation-delay: 0.00s; }
#projects .project-item-anim:nth-child(2), #influencers .project-item-anim:nth-child(2)  { animation-delay: 0.07s; }
#projects .project-item-anim:nth-child(3), #influencers .project-item-anim:nth-child(3)  { animation-delay: 0.14s; }

/* -----------------------------------------------
   CAROUSEL NAV
   ----------------------------------------------- */
.carousel-nav-below { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }

.project-dots {
    display: flex !important;
    align-items: center;
    gap: 8px;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    bottom: auto !important;
}

.project-dots button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(180,180,180,0.7) !important;
    border: 2px solid #fff !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.project-dots button.active {
    background: var(--green-primary) !important;
    transform: scale(1.35) !important;
    box-shadow: 0 2px 8px rgba(100,142,55,0.4) !important;
}

.project-carousel-btn {
    position: static !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(100,142,55,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease !important;
    opacity: 1 !important;
    z-index: 5 !important;
    cursor: pointer !important;
    flex-shrink: 0;
}

.project-carousel-btn:hover {
    background: linear-gradient(135deg, var(--green-hover) 0%, var(--green-dark) 100%) !important;
    box-shadow: 0 6px 20px rgba(100,142,55,0.4) !important;
    transform: scale(1.08) !important;
}

.project-carousel-btn svg { stroke: #fff !important; flex-shrink: 0; }
.carousel-control-prev.project-carousel-btn { left: auto !important; }
.carousel-control-next.project-carousel-btn { right: auto !important; }

.project-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-primary);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 50px;
    border: 2px solid var(--green-primary);
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(100,142,55,0.3);
    letter-spacing: 0.3px;
}
.project-view-all-btn:hover {
    background: transparent;
    color: var(--green-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100,142,55,0.15);
}

/* ===============================================
   INFLUENCERS SECTION
   =============================================== */
#influencers {
    min-height: 100vh;
    padding: 60px 0 72px;
    position: relative;
    z-index: 10;
    background: #fff;
    box-sizing: border-box;
}

/* ===============================================
   FOOTER — dark olive depth, rich & grounded
   =============================================== */
.footer {
    background: linear-gradient(160deg, var(--green-dark) 0%, #1c2710 100%);
    padding: 60px 0 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-accent) 50%, var(--green-primary) 100%);
}
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-accent) !important;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-text  { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.72) !important; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    color: rgba(255,255,255,0.62) !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-links a:hover { color: var(--green-accent) !important; transform: translateX(5px); }
.footer-divider { border-color: rgba(255,255,255,0.12); margin: 40px 0 30px; }
.footer .text-center p { color: rgba(255,255,255,0.45); font-size: 0.9rem; }

/* ===============================================
   SCROLL TO TOP
   =============================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    box-shadow: 0 4px 18px rgba(100,142,55,0.35);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}
.scroll-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(100,142,55,0.45); }

/* ===============================================
   AOS
   =============================================== */
[data-aos] { opacity: 0; transition-property: transform, opacity; }
[data-aos].aos-animate { opacity: 1; }

@media (max-width: 768px) {
    #locations [data-aos],
    #locations [data-aos].aos-animate {
        opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important;
    }
    #locations .location-link,
    #locations .location-card,
    #locations .coming-soon-section,
    #locations .operating-hours {
        opacity: 1 !important; transform: none !important; animation: none !important;
    }
}

/* ===============================================
   TOAST NOTIFICATIONS
   =============================================== */
#gw-toast-container {
    position: fixed; top: 24px; right: 24px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
    max-width: 340px; width: calc(100% - 48px); pointer-events: none;
}

.gw-toast {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; border-radius: 12px; background: #fff;
    border: 1px solid #e0e0e0; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    pointer-events: all; animation: gw-in 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
.gw-toast.removing { animation: gw-out 0.22s ease-in forwards; }

@keyframes gw-in {
    from { opacity: 0; transform: translateX(60px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes gw-out {
    from { opacity: 1; transform: translateX(0) scale(1); max-height: 120px; }
    to   { opacity: 0; transform: translateX(60px) scale(0.95); max-height: 0; padding: 0; margin: 0; }
}

.gw-toast-progress { position: absolute; bottom: 0; left: 0; height: 3px; animation: gw-bar linear forwards; transform-origin: left; }
@keyframes gw-bar { from { width: 100%; } to { width: 0%; } }

.gw-toast-icon  { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.gw-toast-body  { flex: 1; min-width: 0; }
.gw-toast-title { font-size: 0.88rem; font-weight: 700; color: #222; margin-bottom: 2px; line-height: 1.4; }
.gw-toast-msg   { font-size: 0.8rem; color: #666; line-height: 1.5; }
.gw-toast-close { background: none; border: none; cursor: pointer; font-size: 18px; line-height: 1; color: #999; padding: 0; flex-shrink: 0; transition: color 0.15s; }
.gw-toast-close:hover { color: #333; }

.gw-toast-success .gw-toast-icon     { background: var(--green-light); color: var(--green-primary); }
.gw-toast-success .gw-toast-progress { background: var(--green-primary); }
.gw-toast-error   .gw-toast-icon     { background: #fdecea; color: #c0392b; }
.gw-toast-error   .gw-toast-progress { background: #e74c3c; }
.gw-toast-info    .gw-toast-icon     { background: #e8f4fd; color: #2980b9; }
.gw-toast-info    .gw-toast-progress { background: #3498db; }
.gw-toast-warning .gw-toast-icon     { background: #fff8e1; color: #e67e22; }
.gw-toast-warning .gw-toast-progress { background: #f39c12; }

.gw-toast-confirm            { flex-direction: column; gap: 10px; }
.gw-toast-confirm-top        { display: flex; align-items: flex-start; gap: 12px; }
.gw-toast-confirm-actions    { display: flex; gap: 8px; padding-left: 42px; }
.gw-toast-confirm-actions button { padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; border: 1px solid; transition: all 0.15s; }
.gw-confirm-yes  { background: var(--green-primary); color: #fff; border-color: var(--green-primary) !important; }
.gw-confirm-yes:hover { background: var(--green-hover); }
.gw-confirm-no   { background: #fff; color: #666; border-color: #ddd !important; }
.gw-confirm-no:hover { background: #f5f5f5; }

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 1200px) { #products .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

@media (max-width: 992px) {
    #products .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-image { height: 280px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-tagline { font-size: 1.2rem; }
    .navbar-nav .nav-link { margin: 0.5rem 0; }
    .location-card { padding: 2.2rem 1.8rem; }
    .location-icon { width: 65px; height: 65px; margin-bottom: 1.3rem; }
    .location-icon img, .location-pin-icon, .location-icon svg { width: 32px !important; height: 32px !important; }
    .location-content h4 { font-size: 1.4rem; }
    #projects .product-catalog-card, #influencers .product-catalog-card { height: 380px; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 85vh; height: auto; padding: 100px 0 60px; }
    .hero-text h1  { font-size: 2.5rem; }
    .hero-tagline  { font-size: 1.1rem; }
    #products, #about, #projects, #influencers { padding: 40px 0 52px; }
    #products .product-grid { grid-template-columns: 1fr; gap: 16px; }
    .product-image   { height: 220px; }
    .product-content { padding: 18px; }

    .location-card {
        flex-direction: column !important; gap: 0 !important; padding: 1.75rem 1.5rem !important;
        align-items: center !important; text-align: center !important; transform: none !important;
        transition: box-shadow 0.3s ease, border-color 0.3s ease !important; touch-action: manipulation;
    }
    .location-card:hover, .location-card:active,
    .location-link:hover .location-card, .location-link:active .location-card { transform: none !important; }

    .location-icon { width: 50px !important; height: 50px !important; margin-bottom: 1rem !important; }
    .location-icon img, .location-pin-icon, .location-icon svg { width: 25px !important; height: 25px !important; }
    .location-content { flex: 1 !important; text-align: center !important; width: 100% !important; min-height: auto !important; justify-content: flex-start !important; }
    .location-content h4 { font-size: 1.2rem !important; margin-bottom: 0.6rem !important; }
    .location-content p  { font-size: 0.9rem !important; margin-bottom: 0.4rem !important; }
    .location-card .btn, .location-card .btn-success { width: 100% !important; margin-top: 1rem !important; padding: 0.7rem 1.5rem !important; }
    .location-contact-button { border-top: none !important; padding-top: 0 !important; }

    #projects .carousel-item .row, #influencers .carousel-item .row { flex-wrap: wrap !important; justify-content: center !important; margin: 0; }
    #projects .carousel-item .col-md-4, #influencers .carousel-item .col-md-4 {
        display: flex !important; width: 100% !important; max-width: 100% !important;
        flex: 0 0 100% !important; padding: 0 8px; margin-bottom: 16px;
    }
    #projects .carousel-item .col-md-4:not(:first-child),
    #influencers .carousel-item .col-md-4:not(:first-child) { display: flex !important; }

    .carousel-nav-below { gap: 12px; margin-top: 8px; }
    .project-carousel-btn { width: 36px !important; height: 36px !important; }
    #projects .product-catalog-card    { height: 320px !important; }
    #projects .product-info            { padding: 14px 16px; flex: 0 0 90px !important; height: 90px !important; }
    #influencers .product-catalog-card { height: 360px !important; }
    #influencers .product-info         { padding: 12px 14px; flex: 0 0 110px !important; height: 110px !important; }

    .operating-hours { padding: 1.5rem; text-align: center; margin-top: 2rem; }
    .hours-info { align-items: center; }
    .hours-info p { font-size: 0.9rem; }
    .text-lg-end { text-align: center !important; margin-top: 1rem; }
    .visit-btn { width: 100%; display: block !important; }
    .footer { padding: 40px 0 20px; }
    .footer-title { font-size: 1.1rem; margin-bottom: 1rem; }
    .footer-text { font-size: 0.85rem; }
    .scroll-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

@media (max-width: 576px) {
    #gw-toast-container { top: 16px; right: 16px; left: 16px; width: auto; max-width: none; }
    #products .product-grid { grid-template-columns: 1fr; }
    .product-image  { height: 200px; }
    .hero-text h1   { font-size: 2rem; }
    .cta-button     { padding: 0.8rem 2rem; font-size: 0.9rem; }
    .location-card  { padding: 1.5rem 1.25rem !important; }
    .location-icon  { width: 46px !important; height: 46px !important; margin-bottom: 0.9rem !important; }
    .location-icon img, .location-pin-icon, .location-icon svg { width: 23px !important; height: 23px !important; }
    .location-content h4 { font-size: 1.1rem !important; }
    .scroll-to-top  { bottom: 15px; right: 15px; width: 42px; height: 42px; }
}

@media (max-width: 400px) {
    .location-card  { padding: 1.25rem 1rem !important; }
    .location-icon  { width: 42px !important; height: 42px !important; }
    .location-icon img, .location-pin-icon, .location-icon svg { width: 21px !important; height: 21px !important; }
    .location-content h4 { font-size: 1rem !important; }
    .scroll-to-top  { bottom: 12px; right: 12px; width: 42px; height: 42px; }
}

@media (min-width: 1200px) {
    #projects .product-catalog-card   { height: 500px; }
    #influencers .product-catalog-card { height: 500px; }
    .product-image { height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
