/* CSS Variables */
:root {
    /* Hive Color Palette - Yellow/Black/White */
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --accent-dark: #d97706;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-light: #6b7280;
    --text-on-yellow: #1f2937;
    --bg-primary: #ffffff;
    --bg-secondary: #fffbeb;
    --bg-accent: #fef3c7;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --border-focus: var(--accent);
    --success: #10b981;
    --error: #ef4444;
    --hive-yellow: #fbbf24;
    --hive-gold: #f59e0b;
    --hive-amber: #d97706;
    --hive-black: #1f2937;
    --hive-dark: #111827;
    
    /* Typography */
    --font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --line-height: 1.6;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Header */
    --header-height: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: var(--space-2) var(--space-4);
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
    h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.btn:hover::before {
    width: 200px;
    height: 200px;
}

.btn:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--hive-yellow) 0%, var(--hive-gold) 100%);
    color: var(--hive-dark);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--hive-gold) 0%, var(--hive-amber) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn--primary:hover::after {
    opacity: 1;
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    height: var(--header-height);
}

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

@media (max-width: 768px) {
    .header__container {
        padding: 0 var(--space-4);
    }
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 240px;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    gap: var(--space-1);
}

.nav__toggle:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    padding: var(--space-2) 0;
    position: relative;
}

.nav__link:hover {
    color: var(--accent);
}

.nav__link:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

.header__cta {
    margin-left: var(--space-4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: var(--space-4);
    }
    
    .nav__menu.nav__menu--open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header__cta {
        display: none;
    }
}

/* Main Content */
main {
    margin-top: var(--header-height);
}

/* Hero Section */
.hero {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 50%, var(--hive-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.1"><polygon points="30,5 45,15 45,35 30,45 15,35 15,15"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hero__title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.hero__cta {
    margin-bottom: var(--space-8);
}

.hero__trust-row {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-item {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: calc(var(--space-3) * -1);
    color: var(--text-light);
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-16) 0;
    }
    
    .hero__container {
        padding: 0 var(--space-4);
    }
    
    .hero__title {
        font-size: var(--font-size-4xl);
    }
    
    .hero__subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero__trust-row {
        justify-content: center;
    }
}

/* Sections */
section {
    padding: var(--space-20) 0;
}

.section__title {
    text-align: center;
    margin-bottom: var(--space-16);
}

/* Services Section */
.services {
    background: var(--bg-primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.05"><polygon points="20,3 30,10 30,25 20,32 10,25 10,10"/></g></g></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--bg-primary);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--hive-yellow), var(--hive-gold), var(--hive-amber));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    border-radius: calc(var(--border-radius-lg) - 2px);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
    color: var(--hive-gold);
}

.service-card__icon {
    color: var(--hive-yellow);
    margin-bottom: var(--space-6);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.service-card__title {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.service-card__description {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(45deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f59e0b" fill-opacity="0.08"><polygon points="40,8 60,20 60,50 40,62 20,50 20,20"/></g></g></svg>') repeat;
    opacity: 0.6;
    z-index: 0;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.benefit-item__icon {
    color: var(--hive-gold);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

/* Pricing Section */
.pricing {
    background: var(--bg-primary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.05"><polygon points="20,3 30,10 30,25 20,32 10,25 10,10"/></g></g></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing__intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-16);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--hive-yellow), var(--hive-gold), var(--hive-amber));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    border-radius: calc(var(--border-radius-lg) - 2px);
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card--popular {
    transform: scale(1.05);
    border-color: var(--hive-yellow);
}

.pricing-card--popular::before {
    opacity: 1;
}

.pricing-card--popular:hover {
    transform: translateY(-8px) scale(1.07);
}

.pricing-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hive-yellow) 0%, var(--hive-gold) 100%);
    color: var(--hive-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pricing-card__header {
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--hive-yellow) 100%);
    padding: var(--space-8) var(--space-6) var(--space-6);
    text-align: center;
    position: relative;
}

.pricing-card__title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--hive-dark);
    margin-bottom: var(--space-2);
}

.pricing-card__subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-medium);
}

.pricing-card__price {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--hive-dark);
    margin-bottom: 0;
}

.pricing-card__content {
    padding: var(--space-8) var(--space-6);
}

.pricing-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: var(--space-6);
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
}

.pricing-card__features li::before {
    content: '✓';
    color: var(--hive-gold);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__features li:last-child {
    margin-bottom: 0;
}

.pricing-card__best-for {
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    padding: var(--space-4);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--hive-yellow);
    margin-bottom: 0;
}

.pricing__cta {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border);
}

.pricing__cta p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .pricing-card--popular {
        transform: none;
    }
    
    .pricing-card--popular:hover {
        transform: translateY(-4px) scale(1.02);
    }
}

/* Projects Section */
.projects {
    background: var(--bg-primary);
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.project-card {
    background: var(--bg-primary);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--bg-accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--hive-yellow), var(--hive-gold));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.project-card:hover {
    border-color: var(--hive-yellow);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.15);
    transform: translateY(-4px);
}

.project-card:hover::before {
    transform: scaleY(1);
}

.project-card__title {
    color: var(--hive-amber);
    margin-bottom: var(--space-6);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

.project-card__content p {
    margin-bottom: var(--space-3);
}

.project-card__content p:last-child {
    margin-bottom: 0;
}

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, var(--hive-black) 0%, var(--hive-dark) 50%, var(--text-primary) 100%);
    color: var(--bg-primary);
    text-align: center;
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.1"><polygon points="50,10 75,25 75,65 50,80 25,65 25,25"/></g></g></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.cta-band .container {
    position: relative;
    z-index: 1;
}

.cta-band__title {
    color: var(--bg-primary);
    margin-bottom: var(--space-8);
}

.cta-band .btn--primary {
    background: var(--hive-yellow);
    color: var(--hive-dark);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border: 2px solid transparent;
}

.cta-band .btn--primary:hover {
    background: var(--bg-primary);
    color: var(--hive-amber);
    border-color: var(--hive-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.03"><polygon points="60,12 90,30 90,78 60,96 30,78 30,30"/></g></g></svg>') repeat;
    opacity: 0.8;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.required {
    color: var(--error);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    background: var(--bg-primary);
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--hive-yellow);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-bottom: var(--space-6);
}

.form-error {
    color: var(--error);
    font-size: var(--font-size-sm);
    margin-top: var(--space-2);
    display: none;
}

.form-error.form-error--show {
    display: block;
}

.form-status {
    text-align: center;
}

.form-success,
.form-error-general {
    padding: var(--space-4);
    border-radius: var(--border-radius);
    margin-top: var(--space-4);
    display: none;
}

.form-success {
    background: var(--bg-accent);
    color: var(--success);
    border: 1px solid var(--success);
    border-left: 4px solid var(--hive-yellow);
}

.form-error-general {
    background: #fef2f2;
    color: var(--error);
    border: 1px solid var(--error);
}

.form-success.form-success--show,
.form-error-general.form-error-general--show {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, var(--hive-dark) 0%, var(--hive-black) 100%);
    color: var(--bg-primary);
    padding: var(--space-12) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23fbbf24" fill-opacity="0.08"><polygon points="30,5 45,15 45,35 30,45 15,35 15,15"/></g></g></svg>') repeat;
    opacity: 0.4;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.footer__info {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
}

.footer__link {
    color: var(--hive-yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--hive-gold);
    text-decoration: underline;
}

.footer__copyright {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer__content {
        padding: 0 var(--space-4);
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}