/* ============================================
   GOLDEN CHICKS — Premium Poultry Website CSS
   Color Palette: Crisp White & Bold Red
   (variable names kept as --gold/--blue for backwards compatibility)
   ============================================ */

:root {
    /* Primary accent — refined gold */
    --gold:        #C9A14A;
    --gold-light:  #E5C77A;
    --gold-dark:   #8E7126;
    --gold-pale:   #FBF6E8;
    /* Secondary / dark surface — warm near-black */
    --blue:        #1C1A14;
    --blue-mid:    #2A2620;
    --blue-light:  #C9A14A;
    --blue-pale:   #FBF6E8;
    --white:       #FFFFFF;
    --off-white:   #FAF8F2;
    --text-dark:   #1C1A14;
    --text-mid:    #404040;
    --text-light:  #7A7468;
    --border:      rgba(201,161,74,0.22);
    --shadow-gold: 0 10px 40px -10px rgba(201,161,74,0.40);
    --shadow-blue: 0 10px 40px -10px rgba(0,0,0,0.18);
    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:      14px;
    --radius-lg:   22px;
}

html, body { background: var(--white) !important; }

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; }

/* ── TOP BAR ── */
.topbar {
    background: var(--blue);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 8px 0;
    letter-spacing: 0.3px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold-light); }
.topbar i { color: var(--gold-light); margin-right: 5px; }

/* ── NAVBAR ── */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(28,26,20,0.1);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(28,26,20,0.2);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 20px;
}
.nav-logo img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 2px rgba(201,161,74,0.3);
    transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-links a {
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--blue);
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-links a:hover, .nav-links a.active {
    color: var(--gold-dark);
    background: var(--gold-pale);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO SLIDER ── */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--blue);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,26,20,0.82) 0%, rgba(28,26,20,0.4) 60%, rgba(0,0,0,0.1) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}
.slide-text {
    max-width: 650px;
    color: var(--white);
    animation: slideIn 0.8s ease forwards;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.slide-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-text h1 span { color: var(--gold-light); }
.slide-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 520px;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.btn-gold {
    background: var(--gold);
    color: var(--blue);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,161,74,0.5);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-blue:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--blue);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold-light);
    transform: scale(1.3);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}
.slider-arrow:hover {
    background: var(--gold);
    color: var(--blue);
    border-color: var(--gold);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ── SECTION STYLES ── */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-dark {
    background: var(--blue);
    color: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-pale);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
}
.section-dark .section-tag {
    color: var(--gold-light);
    background: rgba(201,161,74,0.15);
    border-color: rgba(201,161,74,0.3);
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--blue);
    margin-bottom: 14px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header h2 em { color: var(--gold-dark); font-style: normal; }
.section-header p {
    color: var(--text-mid);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    margin: 14px auto 0;
}

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,161,74,0.2);
    border: 1px solid rgba(201,161,74,0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    color: var(--gold-light);
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
}

/* ── PRODUCT CARDS ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(28,26,20,0.08);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(28,26,20,0.15);
}
.product-img {
    height: 220px;
    background: var(--blue-pale);
    overflow: hidden;
    position: relative;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}
.product-icon-box {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.product-body { padding: 24px; }
.product-body h3 {
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 8px;
}
.product-body p {
    color: var(--text-mid);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}
.product-price span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* ── GALLERY GRID ── */
.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;
    box-shadow: 0 4px 16px rgba(28,26,20,0.1);
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-blue); }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,26,20,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--gold);
    color: var(--blue);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}
.lb-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ── ABOUT SECTION ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-blue);
    aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--blue);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
    text-align: center;
    font-weight: 700;
}
.about-img-badge .badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.about-img-badge .badge-text { font-size: 0.75rem; letter-spacing: 0.5px; }
.about-content h2 { color: var(--blue); margin-bottom: 18px; }
.about-content > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1rem;
    flex-shrink: 0;
}
.feature-item h4 { font-size: 0.9rem; color: var(--blue); margin-bottom: 3px; }
.feature-item p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ── MISSION VISION ── */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mv-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,161,74,0.25);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.mv-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.mv-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--blue);
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(201,161,74,0.4);
}
.mv-card h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.mv-card p { color: rgba(255,255,255,0.8); line-height: 1.75; font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
}
.testimonial-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 30px rgba(28,26,20,0.1);
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.testimonial-inner::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    color: var(--gold-pale);
    position: absolute;
    top: -10px;
    left: 24px;
    line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 14px; font-size: 1.1rem; }
.testimonial-inner p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.author-name { font-weight: 700; color: var(--blue); }
.author-company { font-size: 0.8rem; color: var(--text-light); }
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.t-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ── WHY CHOOSE US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(28,26,20,0.06);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue);
}
.why-card h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--text-mid); font-size: 0.85rem; line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 { color: var(--blue); margin-bottom: 20px; font-size: 1.8rem; }
.contact-info > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--blue); margin-bottom: 3px; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-item p, .contact-item a { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }
.contact-item a:hover { color: var(--gold-dark); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-blue);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    background: #D1FAE5;
    border: 1px solid #6EE7B7;
    color: #065F46;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 16px;
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 50%, #0F3D7A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.06'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    position: relative;
}
.page-hero h1 span { color: var(--gold-light); }
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 0.85rem;
    opacity: 0.8;
    position: relative;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; color: var(--gold); }

/* ── FOOTER ── */
.footer { background: var(--blue); color: rgba(255,255,255,0.85); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 16px;
}
.footer-col > p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; opacity: 0.75; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--blue);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.footer-col h4 {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,161,74,0.25);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 0.875rem;
    opacity: 0.75;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul a:hover { opacity: 1; color: var(--gold-light); padding-left: 4px; }
.footer-col ul a i { font-size: 0.7rem; color: var(--gold); }
.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.875rem;
    margin-bottom: 12px;
    opacity: 0.8;
    line-height: 1.6;
}
.contact-list i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.contact-list a { opacity: 1; }
.contact-list a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { opacity: 1; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BC5C;
}
.wa-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    background: var(--blue);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 50px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
    pointer-events: none;
}
.wa-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--blue);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--blue); }

/* ── ALERT ── */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.alert-info { background: var(--blue-pale); color: var(--blue); border: 1px solid #BFDBFE; }

/* ── MAP ── */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 450px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-badge { bottom: 16px; right: 16px; }
    .mv-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: 0 10px 30px rgba(28,26,20,0.15);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-top: 2px solid var(--gold);
    }
    .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: all; }
    .nav-links a { width: 100%; text-align: left; padding: 10px 16px; }
    .slide-content { padding: 0 24px; }
    .mv-grid { grid-template-columns: 1fr; }
    .features-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slider-arrow { display: none; }
}

/* ============================================
   2025 REFRESH — premium polish layer
   ============================================ */
:root {
    --radius: 16px;
    --radius-lg: 26px;
    --shadow-gold: 0 20px 50px -20px rgba(201,161,74,0.45);
    --shadow-blue: 0 24px 60px -24px rgba(28,26,20,0.25);
}

html, body, .navbar, .footer, .section, .section-alt { background-color: var(--white); }
body { color: var(--text-dark); -webkit-font-smoothing: antialiased; }

.section-alt { background: var(--off-white) !important; }
.section-dark {
    background: linear-gradient(160deg, #1C1A14 0%, #2A2620 70%, #3A3220 100%) !important;
}

/* Navbar — taller, glassy on scroll */
.navbar { box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.navbar.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 8px 30px -10px rgba(0,0,0,0.10); }
.nav-inner { padding: 16px 24px; }
.nav-logo img { height: 64px; width: 64px; }

/* Topbar — softer dark band */
.topbar { background: #1C1A14; }

/* Buttons — modern lift */
.btn { border-radius: 999px; padding: 15px 30px; font-weight: 700; letter-spacing: 0.4px; box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.btn-gold { background: linear-gradient(135deg, #C9A14A 0%, #E5C77A 100%); color: #1C1A14; border-color: transparent; }
.btn-gold:hover { box-shadow: 0 14px 32px -10px rgba(201,161,74,0.55); transform: translateY(-3px); }
.btn-blue { background: #1C1A14; color: #fff; border-color: #1C1A14; }
.btn-blue:hover { background: #2A2620; box-shadow: 0 14px 32px -10px rgba(28,26,20,0.45); transform: translateY(-3px); }
.btn-outline-gold { background: #fff; color: #8E7126; border: 2px solid #C9A14A; }
.btn-outline-gold:hover { background: #C9A14A; color: #1C1A14; }

/* Hero overlay — warm cinematic black */
.slide-overlay { background: linear-gradient(120deg, rgba(28,26,20,0.78) 0%, rgba(28,26,20,0.45) 55%, rgba(28,26,20,0.15) 100%) !important; }

/* Cards — modern soft shadow */
.product-card, .mv-card, .why-card, .testimonial-inner, .contact-form, .contact-info, .stat-item {
    border-radius: 20px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 40px -16px rgba(28,26,20,0.10) !important;
    border: 1px solid rgba(28,26,20,0.05);
    transition: transform .4s ease, box-shadow .4s ease;
}
.product-card:hover, .why-card:hover, .mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 28px 60px -20px rgba(201,161,74,0.28) !important;
}

/* Section spacing breathe */
.section { padding: 110px 0; }
.section-header { margin-bottom: 70px; }
.section-header h2 { font-weight: 700; letter-spacing: -0.5px; }

/* Stats bar — clean white with gold underline */
.stats-bar { background: var(--white); border-top: 1px solid rgba(28,26,20,0.06); border-bottom: 1px solid rgba(28,26,20,0.06); padding: 56px 0; }
.stats-bar .stat-num { color: var(--blue); }

/* Page hero — refined gradient band */
.page-hero {
    background: linear-gradient(135deg, #1C1A14 0%, #2A2620 60%, #8E7126 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; }
.page-hero h1 span { color: var(--gold-light); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.75); margin-top: 14px; display: inline-flex; gap: 10px; align-items: center; font-size: 0.85rem; }
.page-hero .breadcrumb a { color: var(--gold-light); }

/* Footer */
.footer { background: #1C1A14; color: rgba(255,255,255,0.75); }
.footer h4 { color: #fff; }
.footer a:hover { color: var(--gold-light); }

/* WhatsApp float */
.whatsapp-float { box-shadow: 0 16px 40px -10px rgba(37,211,102,0.55) !important; }

/* ── NAV ICONS (hidden on desktop, shown on mobile) ── */
.nav-links .nav-ico { display: none; }

/* ── MOBILE MENU REFRESH ── */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        bottom: auto;
        background: #ffffff;
        flex-direction: column;
        padding: 18px 20px 28px;
        gap: 6px;
        box-shadow: 0 24px 50px rgba(28,26,20,0.18);
        border-top: 3px solid var(--gold);
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        width: 100%;
        display: flex !important;
        align-items: center;
        gap: 16px;
        padding: 16px 18px !important;
        font-size: 1.02rem;
        font-weight: 600;
        color: #1C1A14;
        border-radius: 12px;
        border: 1px solid transparent;
        text-align: left;
        text-transform: none;
        letter-spacing: 0.2px;
        transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
    }
    .nav-links a::after { display: none; }
    .nav-links .nav-ico {
        display: inline-flex;
        align-items: center; justify-content: center;
        width: 38px; height: 38px;
        border-radius: 10px;
        background: var(--gold-pale, #FBF6E8);
        color: #8E7126;
        font-size: 1rem;
        flex-shrink: 0;
        transition: background 0.25s, color 0.25s;
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: #FBF6E8;
        color: #8E7126;
        border-color: rgba(201,161,74,0.35);
    }
    .nav-links a.active .nav-ico,
    .nav-links a:hover .nav-ico {
        background: linear-gradient(135deg, #C9A14A, #8E7126);
        color: #fff;
    }
}

/* ============================================
   v2 ENHANCEMENTS — extra spacing & polish
   (palette unchanged: gold + warm-near-black)
   ============================================ */

/* Make product images show the whole bird — no cropping */
.product-img {
    height: 260px;
    background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

/* Homepage 3-up product row — clean, non-overlapping */
.products-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}
@media (max-width: 980px) {
    .products-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .products-grid-3 { grid-template-columns: 1fr; }
}
.product-body { padding: 28px 24px 30px; }
.product-body h3 { color: var(--blue); font-size: 1.25rem; margin: 14px 0 10px; }
.product-body > p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; min-height: 72px; }
.product-price {
    color: var(--gold-dark);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.product-price span { font-size: 0.78rem; color: var(--text-light); font-weight: 500; font-family: 'Montserrat', sans-serif; }

.read-more-wrap {
    text-align: center;
    margin-top: 48px;
    padding-top: 8px;
}

/* ── 4-STEP PROCESS ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 26px 30px;
    text-align: center;
    box-shadow: 0 4px 22px rgba(28,26,20,0.06);
    transition: var(--transition);
    overflow: hidden;
}
.process-step::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.process-step:hover::before { transform: scaleX(1); }

.process-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold-pale);
    line-height: 1;
    letter-spacing: -1px;
}
.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}
.process-step:hover .process-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue);
    transform: rotate(-6deg) scale(1.05);
}
.process-step h3 { color: var(--blue); font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.65; }

/* ── ABOUT IMAGE SLIDER ── */
.about-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-blue);
    background: var(--blue);
}
.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.about-slide.active { opacity: 1; }
.about-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.about-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: var(--blue);
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.about-arrow:hover { background: var(--gold); color: var(--blue); }
.about-arrow.prev { left: 14px; }
.about-arrow.next { right: 14px; }

.about-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}
.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: var(--transition);
}
.about-dot.active { background: var(--gold-light); width: 22px; border-radius: 6px; }

/* ── TEAM GRID ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}
.team-card { text-align: left; padding: 28px 24px; }
.team-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}
.team-ico { flex-shrink: 0; margin: 0; width: 56px; height: 56px; font-size: 1.25rem; border-radius: 14px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; color: var(--blue); }
.team-role { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.3px; }
.team-card p { font-size: 0.88rem; line-height: 1.7; color: var(--text-mid); }

/* ── SECTION SPACING — a bit more breathing room ── */
.section { padding: 92px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-header { margin-bottom: 56px; }

/* ── GALLERY — keep birds visible (slightly taller, focus center-top) ── */
.gallery-item { aspect-ratio: 1 / 1; }
.gallery-item img { object-position: center 35%; }

/* About badge — never overlap content on mobile */
@media (max-width: 768px) {
    .about-img-badge { bottom: -18px; right: 16px; padding: 14px 20px; }
    .about-img-badge .badge-num { font-size: 1.6rem; }
}
