:root {
    --primary: #1a5f3c;
    --primary-light: #2d8a5a;
    --primary-dark: #0f3d26;
    --gold: #c9a227;
    --gold-light: #e5c55a;
    --cream: #faf8f3;
    --cream-dark: #f0ebe0;
    --text-dark: #2c2c2c;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(26, 95, 60, 0.12);
    --shadow-hover: 0 20px 60px rgba(26, 95, 60, 0.2);
    --radius: 20px;
    --radius-sm: 12px;
    
    --dana-color: #2e7d32;
    --inek-color: #1565c0;
    --boga-color: #c62828;
    --deve-color: #ef6c00;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.pattern-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: -1;
    background-image: 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='%231a5f3c' fill-opacity='1'%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");
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1px 0;
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(26, 95, 60, 0.3);
}
.logo-text { font-weight: 700; font-size: 22px; color: var(--primary-dark); }
.logo-text span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a i { font-size: 10px; transition: transform 0.3s ease; }
.dropdown-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown:hover > a i { transform: rotate(180deg); }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--primary); }
.dropdown-menu a i { width: 20px; text-align: center; }

.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 95, 60, 0.3);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 95, 60, 0.4); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 30px 30px;
    overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu-links { list-style: none; }
.mobile-menu-links li { margin-bottom: 20px; }
.mobile-menu-links a { font-size: 24px; color: var(--primary-dark); text-decoration: none; font-weight: 500; }
.mobile-menu-links .submenu { margin-top: 15px; padding-left: 20px; }
.mobile-menu-links .submenu a { font-size: 18px; color: var(--text-muted); }
.btn-join {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 60, 0.4);
}
/* Hero Slider */
.hero-section { padding-top: 105px; }
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .swiper-slide { position: relative; height: 600px; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26, 95, 60, 0.35) 0%, rgba(15, 61, 38, 0.35) 100%); }
.slide-content {
    position: relative; z-index: 10;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
    width: fit-content;
}
.slide-title { font-family: 'Amiri', serif; font-size: 60px; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.slide-title span { color: var(--gold-light); }
.slide-desc { font-size: 18px; color: rgba(255, 255, 255, 0.85); max-width: 550px; margin-bottom: 35px; }
.slide-buttons { display: flex; gap: 15px; }

.btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4); }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    width: 55px !important; height: 55px !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--gold); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px !important; color: var(--white); font-weight: bold; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255, 255, 255, 0.5); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); width: 35px; border-radius: 10px; }

/* Stats Bar */
.stats-bar {
    background: var(--white);
    padding: 30px 0;
    margin-top: -60px;
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 0 40px; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px; top: 50%;
    transform: translateY(-50%);
    height: 50px; width: 1px;
    background: var(--cream-dark);
}
.stat-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary);
    font-size: 20px;
}
.stat-number { font-size: 32px; font-weight: 700; color: var(--primary-dark); line-height: 1; }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 5px; }

/* Section Styles */
.section { padding: 100px 0; }
.section-sm { padding: 80px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header-left {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}
.section-badge.dana { background: linear-gradient(135deg, var(--dana-color), #43a047); }
.section-badge.inek { background: linear-gradient(135deg, var(--inek-color), #1976d2); }
.section-badge.boga { background: linear-gradient(135deg, var(--boga-color), #d32f2f); }
.section-badge.deve { background: linear-gradient(135deg, var(--deve-color), #f57c00); }

.section-title { font-family: 'Amiri', serif; font-size: 48px; color: var(--primary-dark); margin-bottom: 15px; }
.section-title span { color: var(--gold); }
.section-title-sm { font-family: 'Amiri', serif; font-size: 36px; color: var(--primary-dark); margin-bottom: 10px; }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-desc-left { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0; }

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}
.view-all-btn:hover { background: var(--primary); color: var(--white); }

/* Animal Types Section */
.animal-types-section { background: var(--cream); padding-top: 80px; }
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.type-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.type-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.type-card:hover::before { transform: scaleX(1); }
.type-card.dana:hover::before { background: linear-gradient(90deg, var(--dana-color), #66bb6a); }
.type-card.inek:hover::before { background: linear-gradient(90deg, var(--inek-color), #42a5f5); }
.type-card.boga:hover::before { background: linear-gradient(90deg, var(--boga-color), #ef5350); }
.type-card.deve:hover::before { background: linear-gradient(90deg, var(--deve-color), #ffa726); }

.type-image { position: relative; height: 180px; overflow: hidden; }
.type-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.type-card:hover .type-image img { transform: scale(1.1); }
.type-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 95, 60, 0.7) 0%, transparent 60%); }
.type-icon {
    position: absolute;
    bottom: 15px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.type-content { padding: 30px 20px; }
.type-title { font-family: 'Amiri', serif; font-size: 24px; color: var(--primary-dark); margin-bottom: 10px; }
.type-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.6; }
.type-info { display: flex; justify-content: center; gap: 20px; padding-top: 15px; border-top: 1px solid var(--cream-dark); }
.type-info-item { text-align: center; }
.type-info-value { font-size: 18px; font-weight: 700; color: var(--primary); }
.type-info-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Animal Sections */
.dana-section { background: linear-gradient(180deg, #f1f8e9 0%, var(--white) 100%); }
.inek-section { background: linear-gradient(180deg, #e3f2fd 0%, var(--cream) 100%); }
.boga-section { background: linear-gradient(180deg, #ffebee 0%, var(--white) 100%); }
.deve-section { background: linear-gradient(180deg, #fff3e0 0%, var(--cream) 100%); }

/* Animal Cards Slider */
.animals-slider-wrapper { position: relative; padding: 0 60px; }
.animals-slider { overflow: hidden; padding: 20px 0; }
.animals-slider .swiper-slide { height: auto; }

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
    font-size: 18px;
}
.slider-nav:hover { background: var(--primary); border-color: var(--primary); color: var(--white); box-shadow: 0 8px 25px rgba(26, 95, 60, 0.3); }
.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }
.dana-section .slider-nav:hover { background: var(--dana-color); border-color: var(--dana-color); }
.inek-section .slider-nav:hover { background: var(--inek-color); border-color: var(--inek-color); }
.boga-section .slider-nav:hover { background: var(--boga-color); border-color: var(--boga-color); }
.deve-section .slider-nav:hover { background: var(--deve-color); border-color: var(--deve-color); }

.slider-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.slider-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--cream-dark); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.slider-pagination .swiper-pagination-bullet-active { background: var(--primary); width: 30px; border-radius: 10px; }
.dana-section .slider-pagination .swiper-pagination-bullet-active { background: var(--dana-color); }
.inek-section .slider-pagination .swiper-pagination-bullet-active { background: var(--inek-color); }
.boga-section .slider-pagination .swiper-pagination-bullet-active { background: var(--boga-color); }
.deve-section .slider-pagination .swiper-pagination-bullet-active { background: var(--deve-color); }

/* Animal Cards */
.animal-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.animal-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.card-badge {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 10;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.card-badge.sold-out { background: #dc3545; color: var(--white); }
.card-badge.limited { background: #fd7e14; color: var(--white); }

.card-image { position: relative; height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.animal-card:hover .card-image img { transform: scale(1.1); }
.card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%); }
.card-type { position: absolute; bottom: 15px; left: 20px; color: var(--white); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }

.card-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-family: 'Amiri', serif; font-size: 22px; color: var(--primary-dark); margin-bottom: 6px; }
.card-weight { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }

.card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.card-stat { text-align: center; padding: 10px 6px; background: var(--cream); border-radius: var(--radius-sm); }
.card-stat-value { font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1; }
.card-stat-label { font-size: 10px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.card-stat.sold .card-stat-value { color: var(--gold); }
.card-stat.remaining .card-stat-value { color: var(--primary-light); }

.progress-container { margin-bottom: 18px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.progress-label { font-size: 12px; color: var(--text-muted); }
.progress-percent { font-size: 12px; font-weight: 600; color: var(--primary); }
.progress-bar { height: 6px; background: var(--cream-dark); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 10px; transition: width 1s ease; }
.dana-section .progress-fill { background: linear-gradient(90deg, var(--dana-color), #81c784); }
.inek-section .progress-fill { background: linear-gradient(90deg, var(--inek-color), #64b5f6); }
.boga-section .progress-fill { background: linear-gradient(90deg, var(--boga-color), #e57373); }
.deve-section .progress-fill { background: linear-gradient(90deg, var(--deve-color), #ffb74d); }

.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--cream-dark); margin-top: auto; }
.card-price { display: flex; flex-direction: column; }
.price-label { font-size: 11px; color: var(--text-muted); }
.price-value { font-size: 20px; font-weight: 700; color: var(--primary-dark); }

.card-actions { display: flex; gap: 8px; }
.btn-quick-view {
    background: var(--cream);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-quick-view:hover { background: var(--primary); color: var(--white); }

.btn-detail {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 10px 16px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.btn-detail:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 95, 60, 0.4); }
.dana-section .btn-detail { background: linear-gradient(135deg, var(--dana-color), #43a047); }
.inek-section .btn-detail { background: linear-gradient(135deg, var(--inek-color), #1976d2); }
.boga-section .btn-detail { background: linear-gradient(135deg, var(--boga-color), #d32f2f); }
.deve-section .btn-detail { background: linear-gradient(135deg, var(--deve-color), #f57c00); }

/* How Section */
.how-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden; }
.how-section .section-title { color: var(--white); }
.how-section .section-desc { color: rgba(255, 255, 255, 0.7); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.step-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-5px); }
.step-number {
    width: 60px; height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}
.step-title { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.step-desc { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

/* Contact Section */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h3 { font-family: 'Amiri', serif; font-size: 36px; color: var(--primary-dark); margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 30px; font-size: 16px; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}
.contact-text h4 { font-size: 16px; color: var(--primary-dark); margin-bottom: 2px; }
.contact-text span { font-size: 14px; color: var(--text-muted); }

.contact-form-wrapper { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group textarea { height: 120px; resize: none; }

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26, 95, 60, 0.3); }

/* Footer */
.footer { background: var(--primary-dark); padding: 60px 0 30px; }
.footer-content { text-align: center; }
.footer-brand { margin-bottom: 30px; }
.footer-brand .logo { justify-content: center; margin-bottom: 15px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 14px; }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1200px) {
    .types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-toggle { display: block; }
    .slide-title { font-size: 42px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .section-header-left { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .hero-slider .swiper-slide { height: 550px; }
    .slide-title { font-size: 32px; }
    .slide-buttons { flex-direction: column; }
    .stats-bar { margin-top: -40px; margin-left: 15px; margin-right: 15px; }
    .section { padding: 60px 0; }
    .section-sm { padding: 50px 0; }
    .section-title { font-size: 32px; }
    .animals-slider-wrapper { padding: 0 15px; }
    .slider-nav { width: 40px; height: 40px; font-size: 14px; }
    
    /* Types Grid - Horizontal Scroll Slider */
    .types-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 15px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .types-grid::-webkit-scrollbar {
        height: 6px;
    }
    .types-grid::-webkit-scrollbar-track {
        background: var(--cream-dark);
        border-radius: 10px;
    }
    .types-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    .types-grid .type-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
        scroll-snap-align: center;
    }
    
    .steps-grid { grid-template-columns: 1fr; }
    .card-actions { flex-direction: column; }
}

@media (max-width: 576px) {
    .container { padding: 0 15px; }
    .stats-container { grid-template-columns: 1fr; }
    .stat-item::after { display: none; }
}