/* =============================================
   STYLE.CSS - Integrated Farm Landing Page
   Color Palette:
   - Primary Green: #17753A
   - Secondary Green: #4E9440
   - Light Green: #8BC53F
   - Accent Orange: #FF7A1A
   - Accent Yellow: #FFD32A
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    --primary: #17753A;
    --primary-dark: #0F5A2C;
    --secondary: #4E9440;
    --light-green: #8BC53F;
    --accent: #FF7A1A;
    --yellow: #FFD32A;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;
    --shadow-sm: 0 2px 8px rgba(23, 117, 58, 0.08);
    --shadow-md: 0 4px 16px rgba(23, 117, 58, 0.12);
    --shadow-lg: 0 8px 32px rgba(23, 117, 58, 0.16);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--light-green));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* ===== Navbar ===== */
#mainNavbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 0.5rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(23, 117, 58, 0.3);
}

#mainNavbar .navbar-brand {
    color: var(--white) !important;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transform: rotate(-10deg);
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(0deg) scale(1.1);
}

.brand-title {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.65rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0F5A2C 50%, #0A4A22 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(78, 148, 64, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 197, 63, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: var(--yellow);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 210, 42, 0.3);
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-explore {
    background: var(--yellow);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-explore:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 210, 42, 0.3);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-main {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-floating-card {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-floating-card.card-1 {
    top: -20px;
    left: -30px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    bottom: 30px;
    right: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-icon.green {
    background: #E8F5E9;
    color: var(--primary);
}

.floating-icon.orange {
    background: #FFF3E0;
    color: var(--accent);
}

.floating-text h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    color: var(--gray-900);
}

.floating-text small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== About Section ===== */
.about-image {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 120px;
}

.about-experience-badge h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--gray-100);
    border-radius: 10px;
    transition: var(--transition);
}

.about-feature-item:hover {
    background: var(--primary);
    color: var(--white);
}

.about-feature-item i {
    color: var(--light-green);
    font-size: 1.1rem;
}

.about-feature-item:hover i {
    color: var(--yellow);
}

/* ===== Category Tabs ===== */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== Product Card ===== */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.product-badge.peternakan {
    background: #E8F5E9;
    color: var(--primary);
}

.product-badge.perikanan {
    background: #E3F2FD;
    color: #1565C0;
}

.product-badge.perkebunan {
    background: #FFF3E0;
    color: #E65100;
}

.product-body {
    padding: 1.2rem;
}

.product-body h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

/* ===== Program Card ===== */
.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--light-green));
    transform: scaleX(0);
    transition: var(--transition);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
}

.program-card h5 {
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.program-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.program-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.program-link i {
    transition: var(--transition);
}

.program-link:hover i {
    transform: translateX(5px);
}

/* ===== Activity Card ===== */
.activity-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.activity-date {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.activity-overlay h5 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.activity-overlay p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(23, 117, 58, 0.15);
}

.contact-form-wrapper .btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: var(--transition);
}

.contact-form-wrapper .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(23, 117, 58, 0.3);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0F5A2C, #0A4A22);
    color: rgba(255, 255, 255, 0.9);
    padding-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--yellow);
}

.footer-brand h5 {
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-logo{
    height:50px;
    width:auto;
    margin-right:12px;
}

.footer-brand{
    display:flex;
    align-items:center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--yellow);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.6rem;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb-custom {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--yellow);
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--yellow);
}

/* ===== Back to Top ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

#backToTop.show {
    display: flex;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== Toast Notification ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

/* ===== Page Specific: Tentang ===== */
.visi-misi-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.visi-misi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.visi-misi-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.visi-misi-card .card-icon.vision {
    background: #E8F5E9;
    color: var(--primary);
}

.visi-misi-card .card-icon.mission {
    background: #FFF3E0;
    color: var(--accent);
}

.visi-misi-card h4 {
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.visi-misi-card p,
.visi-misi-card li {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Team Section ===== */
.team-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--light-green);
}

.team-card h6 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.team-card small {
    color: var(--gray-500);
}

/* ===== Value Card ===== */
.value-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.value-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.value-card:hover i {
    color: var(--yellow);
}

/* ===== Gallery View ===== */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 117, 58, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h6 {
    color: var(--white);
    font-weight: 600;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-align: center;
}

/* ===== Search ===== */
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.search-box input {
    padding: 0.8rem 1rem 0.8rem 3rem;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    width: 100%;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(23, 117, 58, 0.15);
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

/* ===== Animation ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .brand-subtitle {
        display: none !important;
    }
    
    .category-tabs {
        gap: 0.3rem;
    }
    
    .category-tab {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer {
        padding-top: 2rem;
    }
}

