/* ============================================================
   Sheen Laminate — Main Stylesheet
   Brand Colors: #556B2F | #8FA31E | #C6D870 | #EFF5D2
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --green-dark:    #556B2F;
    --green-mid:     #8FA31E;
    --green-light:   #C6D870;
    --green-pale:    #EFF5D2;
    --black:         #111111;
    --dark:          #1a1a1a;
    --white:         #ffffff;
    --gray-100:      #f8f9fa;
    --gray-200:      #e9ecef;
    --gray-600:      #6c757d;
    --font-main:     'Outfit', sans-serif;
    --font-heading:  'Playfair Display', serif;
    --shadow-sm:     0 2px 12px rgba(85,107,47,0.10);
    --shadow-md:     0 8px 30px rgba(85,107,47,0.18);
    --shadow-lg:     0 16px 48px rgba(85,107,47,0.22);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ---------- Preloader ---------- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo-text {
    font-size: 1.8rem; font-weight: 800; letter-spacing: 4px;
    color: var(--white); margin-top: 12px;
}
.preloader-bar {
    width: 200px; height: 3px; background: rgba(255,255,255,0.2);
    border-radius: 2px; margin-top: 20px; overflow: hidden;
}
.preloader-fill {
    height: 100%; width: 0; background: var(--green-light);
    border-radius: 2px; animation: fill 1.8s ease forwards;
}
@keyframes fill { to { width: 100%; } }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--green-dark);
    color: var(--white);
    font-size: 0.82rem;
    padding: 7px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--green-light); }
.social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: var(--white);
    margin-left: 6px; font-size: 0.75rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
#mainNav {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
    z-index: 1000;
}
#mainNav.scrolled { padding: 8px 0; box-shadow: var(--shadow-md); }

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.15rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-main { font-size: 1.25rem; font-weight: 800; color: var(--green-dark); letter-spacing: 2px; }
.brand-sub { font-size: 0.6rem; font-weight: 500; color: var(--green-mid); letter-spacing: 3px; }

.nav-link {
    font-size: 0.9rem; font-weight: 600; color: var(--dark) !important;
    padding: 8px 14px !important; border-radius: 8px;
    position: relative; letter-spacing: 0.5px;
    transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 2px; background: var(--green-mid); border-radius: 1px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--green-dark) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-primary-brand {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white) !important; border: none;
    padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.88rem;
    letter-spacing: 0.5px; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.btn-primary-brand:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 0.93; }

/* Hamburger toggler */
.navbar-toggler { border: none; padding: 6px; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span { display: block; width: 26px; height: 2.5px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 80px 0 60px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.04)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.03)"/></svg>') center/cover;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-hero .breadcrumb-item a { color: var(--green-light); }
.page-hero .breadcrumb-item.active { color: var(--white); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---------- Section Styling ---------- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
    display: inline-block;
    background: var(--green-pale); color: var(--green-dark);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
    border-left: 3px solid var(--green-mid); margin-bottom: 12px;
}
.section-title { font-family: var(--font-heading); color: var(--green-dark); }
.section-title span { color: var(--green-mid); }
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    border-radius: 2px; margin: 16px 0;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-brand {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white); padding: 13px 32px; border: none;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-brand:hover { color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline-brand {
    color: var(--white); padding: 13px 32px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    background: transparent; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-brand:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--green-dark) 0%, #3a4d1a 50%, var(--green-mid) 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(198,216,112,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.hero-particles {
    position: absolute; inset: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); color: var(--green-light);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px; border-radius: 50px; font-size: 0.82rem;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    backdrop-filter: blur(8px); margin-bottom: 22px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: var(--white); line-height: 1.2; font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-title span { color: var(--green-light); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85); max-width: 520px;
    margin: 18px 0 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-img-wrap {
    position: relative; z-index: 2;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.hero-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: rgba(255,255,255,0.1);
}
.hero-img-card img { width: 100%; height: 480px; object-fit: cover; }

/* Hero stats floating card */
.hero-stats-card {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--white); border-radius: var(--radius);
    padding: 18px 24px; box-shadow: var(--shadow-md);
    display: flex; gap: 24px;
}
.hsc-item { text-align: center; }
.hsc-num { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.hsc-label { font-size: 0.72rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Features Cards ---------- */
.feature-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 28px; text-align: center;
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
    transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 72px; height: 72px; border-radius: 18px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--green-dark);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white); transform: scale(1.1) rotate(5deg);
}
.feature-card h5 { color: var(--green-dark); font-size: 1rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-600); font-size: 0.88rem; }

/* ---------- Product Cards ---------- */
.product-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); border: 1px solid var(--gray-200);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; background: var(--green-pale); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-category-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--green-dark); color: var(--white);
    font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
    letter-spacing: 0.5px;
}
.product-body { padding: 20px; }
.product-body h5 { color: var(--green-dark); font-size: 1rem; margin-bottom: 8px; }
.product-body p { color: var(--gray-600); font-size: 0.85rem; margin-bottom: 16px; }
.btn-view {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green-dark); font-size: 0.85rem; font-weight: 600;
    border: 1.5px solid var(--green-mid); padding: 7px 18px; border-radius: 50px;
    transition: var(--transition);
}
.btn-view:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* Filter Buttons */
.filter-btn {
    padding: 8px 22px; border-radius: 50px; border: 2px solid var(--green-mid);
    background: transparent; color: var(--green-dark); font-weight: 600; font-size: 0.88rem;
    cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* ---------- Statistics Section ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 70px 0;
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';position: absolute;inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800; color: var(--white); line-height: 1;
    font-family: var(--font-main);
}
.stat-number .stat-suffix { color: var(--green-light); }
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.2); margin: auto; }

/* ---------- Gallery Page ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(85,107,47,0.85) 0%, transparent 60%);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
    color: var(--white); font-size: 1.8rem;
    transition: var(--transition);
    opacity: 0;
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: translate(-50%, -50%); }
.gallery-overlay-title { color: var(--white); font-size: 0.95rem; font-weight: 600; }

/* ---------- Services Cards ---------- */
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px 30px; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm); transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 80px; height: 80px; border-radius: 20px; margin-bottom: 24px;
    background: linear-gradient(135deg, var(--green-pale), #d8eca0);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--green-dark); transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white); transform: rotate(-5deg) scale(1.08);
}
.service-card h4 { color: var(--green-dark); font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-600); font-size: 0.88rem; }

/* ---------- About Page ---------- */
.about-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-badge-card {
    position: absolute; bottom: 20px; left: -30px;
    background: var(--green-dark); color: var(--white);
    border-radius: var(--radius); padding: 18px 22px;
    box-shadow: var(--shadow-md); text-align: center;
}
.about-badge-card .num { font-size: 2rem; font-weight: 800; }
.about-badge-card .label { font-size: 0.78rem; opacity: 0.85; }

.value-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 20px; border-radius: var(--radius); border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.value-item:hover { border-color: var(--green-light); background: var(--green-pale); box-shadow: var(--shadow-sm); }
.value-icon {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark); font-size: 1.3rem;
}

/* ---------- Catalogue Page ---------- */
.catalogue-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.catalogue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.catalogue-cover {
    height: 220px; background: linear-gradient(135deg, var(--green-pale), #d8eaa0);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.catalogue-cover i { font-size: 5rem; color: var(--green-dark); opacity: 0.4; }
.catalogue-body { padding: 22px; }
.catalogue-body h5 { color: var(--green-dark); font-size: 1rem; margin-bottom: 8px; }
.btn-download {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white); padding: 9px 22px; border-radius: 50px;
    font-size: 0.87rem; font-weight: 600; transition: var(--transition);
}
.btn-download:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Contact Page ---------- */
.contact-info-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    display: flex; gap: 18px; align-items: flex-start;
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.contact-info-card .ci-icon {
    width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.3rem;
}
.contact-info-card h6 { color: var(--green-dark); font-weight: 700; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { color: var(--gray-600); font-size: 0.9rem; }
.contact-info-card a:hover { color: var(--green-dark); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--green-dark); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid var(--gray-200); border-radius: 10px;
    padding: 12px 16px; font-size: 0.9rem; font-family: var(--font-main);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(143,163,30,0.15);
    outline: none;
}
.map-wrap iframe { border-radius: var(--radius-lg); width: 100%; height: 400px; border: none; box-shadow: var(--shadow-sm); }

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { color: var(--white); font-family: var(--font-heading); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Admin Panel ---------- */
.admin-sidebar {
    min-height: 100vh; background: var(--green-dark); width: 260px;
    position: fixed; left: 0; top: 0; z-index: 100; padding-top: 20px;
}
.admin-sidebar .brand { padding: 10px 24px 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar .brand span { color: var(--white); font-size: 1.1rem; font-weight: 800; }
.admin-nav-link {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.75); padding: 12px 24px; font-size: 0.9rem;
    font-weight: 500; border-left: 3px solid transparent; transition: var(--transition);
}
.admin-nav-link:hover, .admin-nav-link.active {
    color: var(--white); background: rgba(255,255,255,0.08);
    border-left-color: var(--green-light);
}
.admin-main { margin-left: 260px; padding: 30px; min-height: 100vh; background: var(--gray-100); }
.admin-topbar {
    background: var(--white); padding: 14px 24px; border-radius: var(--radius);
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.stat-card {
    background: var(--white); border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-sm); border-left: 4px solid var(--green-mid);
}
.stat-card .sc-num { font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.stat-card .sc-label { color: var(--gray-600); font-size: 0.85rem; }
.table thead th { background: var(--green-dark); color: var(--white); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #111d09; }
.footer-top { padding: 70px 0 50px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-icon { background: linear-gradient(135deg, var(--green-mid), var(--green-light)); }
.footer-brand .brand-main { color: var(--white); }
.footer-brand .brand-sub { color: var(--green-light); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.8; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7);
    margin-right: 8px; transition: var(--transition); font-size: 0.85rem;
}
.footer-social a:hover { background: var(--green-mid); color: var(--white); transform: translateY(-3px); }

.footer-heading {
    color: var(--white); font-size: 1rem; font-weight: 700;
    margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.footer-heading::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 36px; height: 2px; background: var(--green-mid); border-radius: 1px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-links i { color: var(--green-mid); font-size: 0.7rem; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; gap: 14px; margin-bottom: 18px; color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.6; }
.footer-contact-list .fc-icon {
    width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
    background: rgba(255,255,255,0.07); display: flex; align-items: center;
    justify-content: center; color: var(--green-light); margin-top: 2px;
}
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--green-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0; color: rgba(255,255,255,0.45); font-size: 0.83rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 24px; z-index: 999;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 18px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { color: var(--white); transform: scale(1.1); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

.scroll-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; box-shadow: var(--shadow-sm);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ---------- Alert & Form Feedback ---------- */
.alert-success-custom {
    background: var(--green-pale); border: 1px solid var(--green-light);
    color: var(--green-dark); border-radius: var(--radius); padding: 14px 20px;
    font-weight: 500; display: flex; gap: 10px; align-items: center;
}
.alert-error-custom {
    background: #fff0f0; border: 1px solid #ffcccc;
    color: #cc0000; border-radius: var(--radius); padding: 14px 20px;
    font-weight: 500; display: flex; gap: 10px; align-items: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    #mainNav { padding: 10px 0; }
    .navbar-collapse { background: var(--white); padding: 20px; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-md); }
    .hero-section { min-height: auto; padding: 80px 0; }
    .hero-img-card img { height: 320px; }
    .hero-stats-card { display: none; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .stat-divider { display: none; }
}
@media (max-width: 767.98px) {
    .section-pad { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form { padding: 24px; }
    .about-badge-card { display: none; }
}
@media (max-width: 575.98px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}
