/* ==========================================================================
   KZN Agric & Feed - Main Stylesheet (Vanilla CSS)
   ========================================================================== */

/* --- Custom Properties & Design Tokens --- */
:root {
    /* Color Palette */
    --primary: #2e7d32;        /* Rich agricultural green */
    --primary-hover: #1b5e20;  /* Darker green */
    --accent: #4caf50;         /* Vibrant leaf green */
    --accent-light: #e8f5e9;   /* Soft green background */
    --dark: #1b1e1b;           /* Sleek charcoal black from logo */
    --dark-muted: #2d322d;     /* Lighter gray/black */
    --light: #f4f7f4;          /* Soft light green-gray background */
    --white: #ffffff;
    --border: #e0e5e0;
    
    /* Text Colors */
    --text-main: #2e352e;
    --text-muted: #5c685c;
    --text-light: #ffffff;
    
    /* Fonts */
    --font-title: 'Outfit', 'Inter', sans-serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(27, 30, 27, 0.08);
    --shadow-lg: 0 16px 36px rgba(27, 30, 27, 0.12);
    
    /* Borders & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50px;
    --container-width: 1200px;
    --header-height: 80px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    background-color: var(--light);
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

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

ul {
    list-style: none;
}

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

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

.tagline {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-light);
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-round);
    margin-bottom: 20px;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background-color: rgba(27, 30, 27, 0.04);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-shop-nav {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-shop-nav:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-icon-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* --- Navigation Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu ul {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(27, 30, 27, 0.95) 0%, transparent 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 52px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-card-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
}

.hero-card.active {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.hero-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* --- Section Structure & Styling --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary);
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-lead-paragraph {
    font-size: 16px;
    color: var(--text-muted);
}

/* --- Drone Spraying Section --- */
.drone-section {
    background-color: var(--white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-visual {
    position: relative;
}

.drone-visual-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background-color: var(--dark);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.drone-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46,125,50,0.15) 0%, rgba(27,30,27,0.7) 100%);
    z-index: 1;
}

.drone-badge-logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 8px solid rgba(255, 255, 255, 0.1);
    animation: floatAnimation 6s ease-in-out infinite;
}

.visual-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    z-index: 3;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary);
}

.visual-card-title {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.visual-card-desc {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.grid-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

.feature-text strong {
    font-family: var(--font-title);
    font-size: 16px;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Gardening Section --- */
.gardening-section {
    background-color: var(--light);
}

.gardening-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.garden-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

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

.card-image-bg {
    height: 160px;
    width: 100%;
    position: relative;
}

/* Fallback Gradients for visual cards instead of missing photos */
.veg-bg {
    background: linear-gradient(135deg, #4caf50 0%, #1b5e20 100%);
}

.cannabis-bg {
    background: linear-gradient(135deg, #1b5e20 0%, #111 100%);
}

/* Overlap effect for card image with custom logo overlay */
.veg-bg::after, .cannabis-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle, #fff 10%, transparent 20%), radial-gradient(circle, #fff 10%, transparent 20%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.garden-card-content {
    padding: 36px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    align-self: flex-start;
    padding: 4px 12px;
    background-color: #f1f8e9;
    color: #558b2f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-round);
    margin-bottom: 16px;
}

.card-badge.premium {
    background-color: var(--dark);
    color: #81c784;
}

.garden-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.garden-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.card-list {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.card-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 800;
}

.garden-card.highlighted {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.1);
}

/* --- Poultry Section --- */
.poultry-section {
    background-color: var(--white);
}

.poultry-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.poultry-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.poultry-feat-item {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.poultry-feat-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.poultry-feat-icon svg {
    width: 20px;
    height: 20px;
}

.poultry-feat-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.poultry-feat-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.poultry-visual-box {
    background-color: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.poultry-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-round);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.poultry-logo-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.poultry-quote {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* --- Pets & Water Section --- */
.pets-water-section {
    background-color: var(--light);
}

.pets-water-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.col-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

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

.card-icon-header {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon-header svg {
    width: 24px;
    height: 24px;
}

.col-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.col-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.pet-brand-callout {
    background-color: #fffde7;
    border: 1px solid #fbc02d;
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 30px;
}

.brand-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #e65100;
    background-color: #ffe0b2;
    padding: 2px 8px;
    border-radius: var(--radius-round);
    margin-bottom: 6px;
}

.pet-brand-callout h4 {
    font-size: 18px;
    color: #e65100;
    margin-bottom: 4px;
}

.pet-brand-callout p {
    font-size: 13px;
    color: #5d4037;
}

.water-special-callout {
    background-color: var(--accent-light);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 16px;
}

.callout-icon {
    font-size: 24px;
}

.water-special-callout h4 {
    font-size: 16px;
    color: var(--primary-hover);
    margin-bottom: 4px;
}

.water-special-callout p {
    font-size: 13px;
    color: var(--text-main);
}

.col-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.col-list li {
    font-size: 14px;
    color: var(--text-main);
    padding-left: 18px;
    position: relative;
}

.col-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.info-text strong {
    font-size: 16px;
    color: var(--dark);
}

.social-channels {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-channels span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    background-color: #1877f2;
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-title);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.15);
}

.social-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

/* Contact Form UI */
.form-wrapper {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.form-wrapper p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background-color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #a0aba0;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

/* Spinner & Button state */
.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

/* Form Submit Messages */
.form-message {
    display: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.5;
}

.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid rgba(46,125,50,0.3);
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid rgba(198,40,40,0.3);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4, .footer-hours h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-hours strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.developer-credit a {
    color: var(--white);
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--accent);
}

/* --- Keyframe Animations --- */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-card-slider {
        flex-direction: row;
        gap: 20px;
    }
    .hero-card {
        flex: 1;
    }
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-visual {
        order: -1;
    }
    .drone-visual-wrapper {
        height: 380px;
    }
    .drone-badge-logo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation Drawer */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 30px 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Layouts */
    .gardening-grid, .pets-water-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .poultry-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .grid-content h2 {
        font-size: 30px;
    }
    
    .col-card {
        padding: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-card-slider {
        flex-direction: column;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .form-wrapper {
        padding: 24px;
    }
    .footer-grid {
        gap: 30px;
    }
}
