/* Skip to content link (accessibility) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 8px 16px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.skip-to-content:focus {
    left: 0;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff9e6;
    color: #333;
    overflow-x: hidden;
}

/* Top Info Bar */
.top-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 13px;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.top-info-item svg {
    width: 16px;
    height: 16px;
    color: #f5a623;
}

.top-info-item span {
    color: #e0e0e0;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #f5a623;
    transform: scale(1.1);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 3px solid #f5a623;
}

.logo {
    max-height: 100px;
    width: auto;
}

/* Navigation Bar */
.main-nav {
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 0 auto;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-tag-new {
    background-color: #ff4757;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    top: -2px;
    display: inline-block;
    transform: rotate(8deg);
}

/* Carousel Section */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(245, 166, 35, 0.8);
    color: white;
    border: none;
    padding: 20px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.carousel-btn:hover {
    background-color: rgba(212, 146, 10, 0.95);
}

.carousel-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0;
    appearance: none;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot:focus-visible {
    outline: 3px solid #f5a623;
    outline-offset: 2px;
}

.dot.active {
    background-color: #f5a623;
    border-color: #fff;
    transform: scale(1.2);
}

/* Tagline Section */
.tagline {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
}

.tagline h1 {
    font-size: 48px;
    color: #8b6914;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.tagline p {
    font-size: 24px;
    color: #8b6914;
    font-style: italic;
    letter-spacing: 2px;
}

/* Typewriter effect */
.typewriter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

#typedText {
    display: inline;
}

.bee-typing-cursor {
    display: inline-block;
    font-size: 28px;
    margin-left: 5px;
    animation: beeBounce 0.4s ease-in-out infinite alternate;
}

@keyframes beeBounce {
    0% {
        transform: translateY(0) rotate(-10deg);
    }
    100% {
        transform: translateY(-8px) rotate(10deg);
    }
}

/* Feature Row (inside tagline) */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
    gap: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.feature-image {
    flex-shrink: 0;
    width: 420px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-text {
    text-align: left;
}

.feature-bold {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    font-style: normal;
}

.feature-row.reverse .feature-text {
    text-align: right;
}

/* Products Section */
.products-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
    text-align: center;
}

.products-section h2 {
    font-size: 42px;
    color: #8b6914;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.section-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-link:hover {
    color: #d4920a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #f5a623;
    position: relative;
}

.product-card.has-badge {
    padding-top: 40px;
}

.organic-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-card-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}

.product-learn-more {
    display: inline-block;
    color: #8b6914;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #f5a623;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-learn-more:hover {
    background-color: #f5a623;
    color: #fff;
}

/* Beekeeping Equipment Section */
.equipment-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5e6b8 0%, #e8d08a 100%);
    text-align: center;
}

.equipment-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.equipment-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 25px;
}

.equipment-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

/* Equipment Grid (desktop) */
.equipment-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.equipment-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.equipment-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 600;
    color: #8b6914;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.equipment-more:hover {
    background-color: #f5a623;
    color: #fff;
}


.equipment-cta:hover {
    background-color: #d4920a;
}

/* OEM Announcement Section */
.oem-announcement {
    padding: 50px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    text-align: center;
}

.oem-announcement-content {
    max-width: 700px;
    margin: 0 auto;
}

.announcement-tag {
    display: inline-block;
    background: #ff4757;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.oem-announcement h2 {
    font-size: 32px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 15px;
}

.oem-announcement p {
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Highlights Section */
.highlights-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-card {
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.highlight-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight-card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    opacity: 0.95;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.certifications-heading {
    font-size: 36px;
    color: #8b6914;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.certifications-grid img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.certifications-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
}

.faq-heading {
    font-size: 42px;
    color: #8b6914;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fffdf5;
}

.faq-question:focus-visible {
    outline: 3px solid #f5a623;
    outline-offset: -3px;
}

.faq-arrow {
    font-size: 12px;
    color: #8b6914;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.site-footer p {
    color: #fff;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-copyright {
    font-weight: 600;
    margin-bottom: 15px !important;
}

.footer-email a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-email a:hover {
    opacity: 0.8;
}

.footer-legal {
    margin-top: 10px;
    font-size: 13px;
}

.footer-legal a {
    color: inherit;
    text-decoration: underline;
    opacity: 0.8;
}

.footer-disclaimer {
    margin-top: 15px !important;
    font-size: 12px !important;
    opacity: 0.85;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        background: #fff;
        padding: 10px 18px;
        justify-content: space-between;
    }

    .logo {
        max-height: 65px;
    }

    .hamburger {
        display: block;
        margin: 0;
        padding: 8px;
    }

    .hamburger-line {
        background-color: #333;
        width: 24px;
        height: 2.5px;
        margin: 4px 0;
    }

    .main-nav {
        padding: 0;
        box-shadow: none;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        background: #fff;
        align-items: stretch;
    }

    .nav-menu.active {
        display: flex;
    }

    .main-nav li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #e5e5e5;
        width: 100%;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        font-size: 14px;
        padding: 14px 15px;
        display: block;
        border-radius: 0;
        color: #333;
    }

    .main-nav a:hover {
        transform: none;
        background-color: #f0f0f0;
    }
    .top-info-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 6px 15px;
    }

    .top-info-left {
        flex-direction: row;
    }

    .top-info-item:first-child {
        display: none;
    }

    .top-info-item {
        font-size: 12px;
    }

    .tagline {
        padding: 40px 15px;
    }

    .tagline h1 {
        font-size: 26px;
    }

    .tagline p {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .feature-bold {
        font-size: 17px;
    }

    .feature-text p {
        font-size: 15px;
    }

    .carousel-btn {
        padding: 15px 10px;
        font-size: 18px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .feature-row {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-image {
        width: 100%;
        max-width: 300px;
        order: 2;
    }

    .feature-text,
    .feature-row.reverse .feature-text {
        order: 1;
        text-align: center;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .products-section h2 {
        font-size: 26px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .product-card {
        padding: 25px 20px;
    }

    .equipment-section h2 {
        font-size: 24px;
    }

    .equipment-section p {
        font-size: 14px;
    }

    .equipment-grid {
        gap: 10px;
        justify-content: center;
    }

    .equipment-img {
        width: 120px;
        height: 120px;
    }

    .equipment-more {
        width: 120px;
        height: 120px;
        font-size: 16px;
    }

    .oem-announcement h2 {
        font-size: 22px;
    }

    .oem-announcement p {
        font-size: 14px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .highlight-card {
        padding: 30px 25px;
    }

    .highlight-card h3 {
        font-size: 17px;
    }

    .highlight-card p {
        font-size: 14px;
    }

    .certifications-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .certifications-grid {
        gap: 30px;
        max-width: 400px;
    }

    .certifications-grid img {
        height: 75px;
        width: 75px;
    }

    .faq-heading {
        font-size: 32px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .site-footer {
        padding: 30px 15px;
    }

    .site-footer p {
        font-size: 14px;
    }
}

/* Honeypot field (anti-spam) */
.honeypot-field {
    display: none;
}

/* Form success banner */
.form-success {
    background: #f0faf0;
    border: 1px solid #6dbf6d;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
    color: #2d6a2d;
    font-size: 16px;
    text-align: center;
}

.form-success p {
    margin: 0;
}

/* 404 Error Page */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: 96px;
    font-weight: bold;
    color: #8b6914;
    margin-bottom: 10px;
}

.error-message {
    font-size: 24px;
    color: #8b6914;
    margin-bottom: 20px;
}

.error-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.error-home-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.error-home-link:hover {
    background-color: #d4920a;
}

/* Iframe no-border */
.iframe-noborder {
    border: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
