:root {
    /* Vibrant Brand Palette */
    --primary-dark: #1B3A4B;
    --primary-darker: #0F2634;
    --accent: #7ac143;
    --accent-dark: #5fa032;
    --accent-light: #8fd45a;
    --accent-glow: rgba(122, 193, 67, 0.3);
    --sale-orange: #FF6B35;
    --sale-orange-dark: #e55a28;
    --sale-yellow: #FFD23F;
    --sale-yellow-light: #FFF3C4;
    --warm-coral: #FF8A65;
    --sky-blue: #4ECDC4;
    --text-dark: #2D3436;
    --text-body: #4A5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-offwhite: #FFF9F0;
    --bg-light-green: #f0fae8;
    --bg-warm-cream: #FFFAF5;
    --border-light: #E8DDD3;
    --overlay-dark: rgba(15, 38, 52, 0.75);
    --overlay-green: rgba(122, 193, 67, 0.85);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Sizing */
    --container-max: 1440px;
    --header-height: 90px;
    --sale-bar-height: 44px;
    --header-gap-below-sale: 14px;
    --radius: 12px;
    --radius-sm: 6px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

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

a:hover { color: var(--accent-dark); }

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SALE ANNOUNCEMENT BAR
   ============================================ */

.sale-bar {
    background: linear-gradient(90deg, var(--sale-orange), #FF8A35, var(--sale-orange));
    background-size: 200% 100%;
    animation: saleBarShimmer 3s ease infinite;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sale-bar .sale-bar-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sale-bar .sale-bar-parrot {
    height: 28px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.sale-bar a {
    color: var(--sale-yellow);
    text-decoration: underline;
    font-weight: 800;
}

.sale-bar a:hover {
    color: #fff;
}

@keyframes saleBarShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.has-sale-bar .site-header {
    top: var(--sale-bar-height);
    padding-top: var(--header-gap-below-sale);
}

.has-sale-bar .sale-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--sale-bar-height);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-light);
}

.site-header.scrolled .nav-list > li > a {
    color: var(--primary-dark);
}

.site-header.scrolled .logo .logo-white { display: none; }
.site-header.scrolled .logo .logo-dark { display: block; }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img { height: 62px; }
.logo .logo-dark { display: none; }
.logo .logo-white { display: block; }

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-list > li > a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 18px;
    display: block;
    position: relative;
    transition: color var(--transition);
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-list > li > a:hover { color: var(--accent); }
.nav-list > li > a:hover::after { width: 70%; }

/* Dropdowns */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    min-width: 240px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 8px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 11px 24px;
    color: var(--text-body);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown li a:hover {
    background: var(--bg-light-green);
    color: var(--accent-dark);
    padding-left: 28px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 7px;
    padding: 10px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--bg-white);
    transition: all 0.3s;
    border-radius: 2px;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--primary-dark);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bg-white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 38, 52, 0.88) 0%,
        rgba(15, 38, 52, 0.65) 40%,
        rgba(255, 107, 53, 0.25) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(15, 38, 52, 0.5));
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
}

.has-sale-bar .hero-inner {
    padding-top: calc(var(--sale-bar-height) + var(--header-height) + var(--header-gap-below-sale) + 40px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-badge {
    display: inline-block;
    background: var(--sale-orange);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: pulseBadge 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    color: var(--bg-white);
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 .sale-highlight {
    color: var(--sale-yellow);
    display: block;
}

.hero-price {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    color: #fff;
}

.hero-price .price-amount {
    color: var(--sale-yellow);
    font-size: 1.3em;
    text-shadow: 0 2px 20px rgba(255, 210, 63, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 2.2rem;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mascot img {
    width: 380px;
    height: auto;
    object-fit: contain;
    animation: mascotBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
    border: 4px solid rgba(255, 210, 63, 0.6);
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2), 0 8px 40px rgba(0,0,0,0.3);
}

@keyframes mascotBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-trust-bar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 20px 24px;
    margin-top: -20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 210, 63, 0.35);
    border-radius: 50px;
    padding: 10px 20px;
    white-space: nowrap;
}

.trust-item i {
    color: var(--sale-yellow);
    font-size: 1rem;
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(43, 43, 43, 0.6) 100%
    );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--bg-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-large { padding: 20px 52px; font-size: 1.05rem; }

.btn-primary {
    background: var(--sale-orange);
    color: var(--bg-white);
    border-color: var(--sale-orange);
}

.btn-primary:hover {
    background: var(--sale-orange-dark);
    border-color: var(--sale-orange-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-green {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.btn-green:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
    border-color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.home-seo-copy .section-header,
.home-value-points .section-header,
.home-faq .section-header {
    margin-bottom: 1.75rem;
}

.home-long-copy-grid {
    gap: 2.25rem;
}

.home-seo-copy .card,
.home-value-points .card,
.home-faq .card {
    padding: 2rem 2.1rem;
}

.home-seo-copy .card h3,
.home-value-points .card h3,
.home-faq .card h3 {
    margin-bottom: 0.85rem;
}

.home-seo-copy .card p,
.home-value-points .card p,
.home-faq .card p {
    margin: 0;
    line-height: 1.8;
}

.home-seo-copy .card p + p {
    margin-top: 1rem;
}

.home-value-grid {
    gap: 2rem;
}

.home-faq-grid {
    gap: 1.75rem 2rem;
}

.bg-light { background: var(--bg-warm-cream); }
.bg-green-tint { background: var(--bg-light-green); }
.bg-sale { background: linear-gradient(135deg, #FFF3E0 0%, #FFF9F0 100%); }
.bg-dark {
    background: var(--primary-darker);
    color: rgba(255,255,255,0.85);
}
.bg-dark h2, .bg-dark h3 { color: var(--bg-white); }

/* ============================================
   LAYOUT GRIDS
   ============================================ */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

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

/* ============================================
   FEATURE CARDS (Why Us)
   ============================================ */

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sale-orange), var(--sale-yellow), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF3E0, var(--bg-light-green));
    color: var(--sale-orange);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    display: block;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
    color: var(--text-body);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
    color: var(--text-body);
}

.product-card .card-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .card-image::after { opacity: 1; }

.product-card .card-content {
    padding: 1.8rem;
}

.product-card .card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-card .card-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.btn-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card:hover .btn-link { color: var(--accent-dark); }

/* ============================================
   TWO-COLUMN CONTENT SECTIONS
   ============================================ */

.two-col-layout .text-content h2 {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1.5rem;
}

.two-col-layout .text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.image-content img {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BENEFIT LISTS
   ============================================ */

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-list li i.fa-solid {
    color: var(--accent);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, var(--primary-darker) 0%, #1B3A4B 100%);
    color: var(--bg-white);
}

.testimonials-section h2 { color: var(--bg-white); }

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

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

.stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.contact-card .icon i {
    color: var(--accent);
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.author {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.92) 0%, rgba(255, 138, 101, 0.88) 50%, rgba(122, 193, 67, 0.85) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--bg-white);
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--sale-orange);
    border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   SALE PRICE CARDS
   ============================================ */

.sale-callout {
    background: linear-gradient(135deg, var(--sale-orange), var(--sale-orange-dark));
    color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sale-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,210,63,0.3) 0%, transparent 70%);
    animation: saleGlow 3s ease-in-out infinite;
}

@keyframes saleGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.sale-callout h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.sale-callout .big-price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--sale-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.sale-callout p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Parrot accent on cards */
.parrot-accent {
    position: relative;
}

.parrot-accent::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: url('/assets/images/mascot/parrot-icon-small.png') center/contain no-repeat;
    opacity: 0.15;
    transform: rotate(15deg);
    pointer-events: none;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
    position: relative;
}

.gallery-item::after {
    content: '+ View';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 193, 67, 0.7);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s, transform 0.2s;
    user-select: none;
    z-index: 10;
}

.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 32px;
    width: 50px;
    height: 50px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    width: 54px;
    height: 54px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ============================================
   AREAS GRID
   ============================================ */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.area-card {
    display: block;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    color: var(--text-body);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.area-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    transition: width var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
    color: var(--text-body);
}

.area-card:hover::before { width: 6px; }

.area-card h3 { margin-bottom: 0.3rem; }
.area-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-light-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.alert-success {
    background: var(--bg-light-green);
    border: 1px solid var(--accent);
    color: var(--accent-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
}

.alert-error {
    background: #fff3f3;
    border: 1px solid #e47a7a;
    color: #9f2d2d;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
}

.recaptcha-terms {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.recaptcha-terms a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.form-submit[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

/* ============================================
   SUB-PRODUCTS / CARD SECTIONS
   ============================================ */

.sub-products .card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.sub-products .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 50px;
}

.footer-logo {
    height: 96px;
    margin-bottom: 1.5rem;
}

.site-footer p { color: rgba(255,255,255,0.6); line-height: 1.7; }

.site-footer h3 {
    color: var(--bg-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 12px;
    position: relative;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.site-footer ul { list-style: none; }

.site-footer ul li { margin-bottom: 10px; }

.site-footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

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

.footer-bottom {
    background: #0a1212;
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.site-credit {
    color: rgba(255, 255, 255, 0.35);
}

.site-credit a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-credit a:hover {
    color: rgba(255, 255, 255, 0.75);
    padding-left: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { text-decoration: underline; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }
.w-100 { width: 100%; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded { border-radius: var(--radius); }
.rounded-img { border-radius: var(--radius); }
.shadow { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .grid-3, .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .product-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 70px 0; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .product-cards-grid { grid-template-columns: 1fr; }

    .mobile-menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-darker);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        padding: 100px 30px 30px;
        overflow-y: auto;
        z-index: 5;
    }

    .main-nav.active { transform: translateX(0); }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list > li > a {
        color: rgba(255,255,255,0.9) !important;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1rem;
    }

    .nav-list > li > a::after { display: none; }

    .dropdown {
        position: static;
        left: 0;
        top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius-sm);
        padding: 0;
        margin: 5px 0;
        min-width: 0;
        width: 100%;
    }

    .dropdown li a {
        color: rgba(255,255,255,0.7);
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .dropdown li a:hover {
        background: rgba(255,255,255,0.05);
        color: var(--accent);
        padding-left: 24px;
    }

    .has-dropdown.active .dropdown { display: block; }

    .has-dropdown:hover .dropdown,
    .has-dropdown.active .dropdown {
        left: 0;
        top: 0;
        transform: none;
    }

    .hero { min-height: auto; background-attachment: scroll; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--header-height) + var(--sale-bar-height) + var(--header-gap-below-sale) + 30px); }
    .hero-mascot { order: -1; }
    .hero-mascot img { width: 180px; padding: 14px; }
    .hero-buttons { justify-content: center; }
    .hero-trust-bar { margin-top: 0; }
    .page-hero { background-attachment: scroll; }
    .image-content { order: -1; }
    .logo img { height: 54px; }

    .home-seo-copy .section-header,
    .home-value-points .section-header,
    .home-faq .section-header {
        margin-bottom: 1.2rem;
    }

    .home-seo-copy .card,
    .home-value-points .card,
    .home-faq .card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .grid-3, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-mascot img { width: 140px; padding: 10px; }
    .hero-price { font-size: 1.4rem; }
    .sale-callout .big-price { font-size: 2.5rem; }
    .section { padding: 50px 0; }
    .hero h1 { font-size: 2rem; }
    .hero-content { max-width: 100%; }
    .hero-inner { padding-left: 16px; padding-right: 16px; }
    .logo img { height: 46px; }
    .footer-logo { height: 72px; }
    .sale-bar { font-size: 0.78rem; padding: 8px 12px; }
}