/* ===== PROFESSIONAL CSS ===== */

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

:root {
    --primary: #CDDC39;
    --primary-dark: #7a9e2f;
    --secondary: #4a9fb5;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--gray-50);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--light) !important;
}

.bg-light {
    background-color: var(--gray-50);
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d4e157 100%);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6b8c2a 100%);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(122, 158, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 158, 47, 0.4);
}

.btn-light {
    background: var(--light);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-block {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--light) 0%, #fafbfc 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.3rem 0;
    border-bottom: 2px solid var(--primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(122, 158, 47, 0.2));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.4rem 0.8rem;
    display: inline-block;
    border-radius: 5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-dark);
    background: rgba(205, 220, 57, 0.1);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a.active {
    color: var(--light);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6b8c2a 100%);
    box-shadow: 0 3px 12px rgba(122, 158, 47, 0.2);
}

.nav-menu a.active::before {
    width: 0;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        padding: 0.35rem 0.7rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.7rem 0;
    }

    .nav-wrapper {
        gap: 1rem;
    }

    .logo {
        font-size: 1.2rem;
        gap: 0.4rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-menu a {
        font-size: 0.75rem;
        letter-spacing: 0.4px;
        padding: 0.3rem 0.6rem;
    }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
    z-index: 1001;
    width: 30px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 997;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: #1a1a1a;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        text-align: left;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        gap: 0;
        z-index: 999;
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        list-style: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.75rem;
        letter-spacing: 2.5px;
        color: var(--light);
        font-weight: 900;
        text-transform: uppercase;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: none;
        background: transparent;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 0;
        background: transparent;
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu a:hover {
        color: var(--primary);
        background: rgba(205, 220, 57, 0.05);
    }

    .nav-menu a:hover::before {
        width: 0;
    }

    .nav-menu a.active {
        color: var(--primary);
        background: transparent;
    }

    .nav-menu a.active::before {
        width: 0;
    }
}

@media (max-width: 480px) {
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .nav-menu {
        width: 85%;
        max-width: 100%;
        text-align: left !important;
    }

    .nav-menu li {
        justify-content: flex-start !important;
    }

    .nav-menu a {
        padding: 1.5rem 2rem !important;
        font-size: 1.75rem !important;
        letter-spacing: 2px;
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(122, 158, 47, 0.1);
    font-family: 'Palatino', serif !important;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--light);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.8;
    font-family: 'Palatino', serif !important;
}

@media (max-width: 1024px) {
    .hero {
        padding: 3rem 2rem;
        min-height: 380px;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1rem;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
        min-height: 250px !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 0.6rem;
        font-family: 'Trebuchet MS', sans-serif !important;
        font-weight: 700 !important;
    }

    .hero p {
        font-size: 1.2rem !important;
        margin-bottom: 1.2rem;
        font-family: 'Trebuchet MS', sans-serif !important;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 3.5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: -1px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.text-white {
    color: var(--light) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* ===== CONTENT BOXES ===== */
.content-box h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-box p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--gray-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== IMAGE BOX ===== */
.image-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-logo-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.home-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(122, 158, 47, 0.2));
}

.story-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
}

.portfolio-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
}

.story-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(122, 158, 47, 0.2));
}

.placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f4e8 0%, #e8f0d8 100%);
    border: 2px dashed rgba(205, 220, 57, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-weight: 600;
    transition: var(--transition);
}

.placeholder:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f8fce4 0%, #f0f8d8 100%);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.gallery-item .placeholder {
    height: 250px;
    border: none;
    margin: 0;
}

/* ===== CARDS ===== */
.card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    font-size: 1.3rem;
}

.card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 1.2rem;
    }

    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dark);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.feature-card p {
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ===== FEATURE CARD FULL ===== */
.feature-card-full {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    padding-left: 4rem;
}

.feature-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.card-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    letter-spacing: -1px;
}

.feature-card-full h3 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    font-size: 1.2rem;
}

.feature-card-full p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-card-full {
        padding: 1.5rem;
        padding-left: 3.5rem;
    }

    .card-number {
        font-size: 1.8rem;
        left: 1.2rem;
        top: 1.2rem;
    }

    .feature-card-full h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .feature-card-full p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-card-full {
        padding: 1.2rem;
        padding-left: 3rem;
    }

    .card-number {
        font-size: 1.5rem;
        left: 1rem;
        top: 1rem;
    }

    .feature-card-full h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card-full p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ===== PRODUCT CATEGORY ===== */
.product-category {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-category h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-category p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.product-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.product-list li {
    color: var(--gray-700);
    padding: 0.5rem 0 0.5rem 1.2rem;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.product-list li:hover {
    color: var(--primary-dark);
    padding-left: 2rem;
    background: rgba(205, 220, 57, 0.05);
}

@media (max-width: 768px) {
    .product-category {
        padding: 1.8rem;
    }

    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .product-category h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .product-category p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .product-list {
        gap: 0.5rem;
    }

    .product-list li {
        padding: 0.6rem 0 0.6rem 1.3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-category {
        padding: 1.5rem;
    }

    .category-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .product-category h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .product-category p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .product-list {
        gap: 0.4rem;
    }

    .product-list li {
        padding: 0.5rem 0 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .product-list li::before {
        font-size: 1rem;
    }
}

/* ===== FEATURE BOX ===== */
.feature-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-box {
        padding: 1.5rem;
    }

    .feature-box i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .feature-box h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .feature-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .feature-box {
        padding: 1.2rem;
    }

    .feature-box i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .feature-box h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .feature-box p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ===== CERT BOX ===== */
.cert-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--dark);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.cert-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cert-box h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6b8c2a 100%);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.process-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    display: none;
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

@media (max-width: 768px) {
    .process-step {
        padding: 1.5rem;
        min-width: 150px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .process-step h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .process-step {
        padding: 1.2rem;
        min-width: auto;
        width: 100%;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .process-step h4 {
        font-size: 0.95rem;
    }

    .process-step p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ===== CONTACT INFO ===== */
.contact-card-single {
    background: var(--light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.contact-card-single h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.contact-intro {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.detail-item {
    text-align: left;
}

.detail-item h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.detail-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
    white-space: normal;
}

.detail-item a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline;
}

.detail-item a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .contact-card-single {
        padding: 2.5rem;
    }

    .contact-details {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-card-single {
        padding: 2rem;
        max-width: 100%;
    }

    .contact-card-single h2 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .detail-item h3 {
        font-size: 1.1rem;
    }

    .detail-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-card-single {
        padding: 1.5rem;
    }

    .contact-card-single h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-intro {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .detail-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .detail-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 800;
}

.contact-form {
    background: linear-gradient(135deg, var(--primary) 0%, #d4e157 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(122, 158, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== MAP ===== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #d4e157 100%);
    color: var(--dark);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    font-family: 'Palatino', serif;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(122, 158, 47, 0.2));
}

.footer h4 {
    color: var(--light) !important;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    font-size: 1.2rem;
    font-family: 'Palatino', serif;
}

.footer p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Palatino', serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--dark) !important;
    text-decoration: none !important;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: -0.2px;
    font-family: 'Palatino', serif;
}

.footer-links a:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.footer p a {
    color: var(--dark) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition);
}

.footer p a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    color: var(--gray-700);
    font-weight: 600;
    font-family: 'Palatino', serif;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

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

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

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 2.5rem 0;
    }

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .hero {
        padding: 3.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-box h2 {
        font-size: 1.6rem;
    }

    .content-box p {
        font-size: 0.95rem;
    }

    .card,
    .feature-card-full,
    .product-category {
        padding: 1.8rem;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .product-category h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.7rem;
    }

    .nav-menu a {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .section {
        padding: 2rem 0;
    }

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

    .placeholder {
        height: 180px;
    }

    .gallery-item .placeholder {
        height: 150px;
    }

    .card,
    .feature-card-full,
    .product-category {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .product-category h3 {
        font-size: 1.2rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-box i {
        font-size: 2rem;
    }

    .feature-box h4 {
        font-size: 1rem;
    }

    .process-step {
        padding: 1.5rem;
        min-width: 150px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

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

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.85rem;
    }
}


/* ===== CONTACT PAGE RESPONSIVE ===== */
/* Styles already included in main contact info section above */
