:root {
    --primary: #5A6B2F;
    --secondary: #4A5D23;
    --accent: #D4A835;
    --background: #0A0E0A;
    --text: #E8F0E8;
    --text-light: #B8C8B8;
    --white: #FFFFFF;
    --border: #2A3A2A;
    --glow: rgba(212, 168, 53, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--background);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.bg-animation::before,
.bg-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.bg-animation::before {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

.bg-animation::after {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -150px;
    right: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, 50px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-shadow: 
        0 0 30px var(--glow),
        0 0 60px rgba(212, 168, 53, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.hero .subtitle {
    font-size: 2rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.5rem 3.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent);
    color: var(--background);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px var(--glow);
}

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

.btn-secondary:hover {
    background: var(--accent);
    color: var(--background);
    box-shadow: 0 0 30px var(--glow);
}

.btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-success {
    background: #4CAF50 !important;
    color: var(--white) !important;
    border-color: #4CAF50 !important;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5) !important;
    cursor: default !important;
}

.btn-success:hover {
    background: #4CAF50 !important;
    transform: none !important;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5) !important;
}

.btn-success i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.btn-error {
    background: #F44336 !important;
    color: var(--white) !important;
    border-color: #F44336 !important;
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.5) !important;
    cursor: default !important;
}

.btn-error:hover {
    background: #F44336 !important;
    transform: none !important;
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.5) !important;
}

.btn-error i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Section */
.section {
    padding: 8rem 0;
    position: relative;
}

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

.section-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--glow);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 20px var(--glow);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.brand-card {
    background: rgba(42, 58, 42, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 4rem;
    transition: all 0.5s ease;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 107, 47, 0.1), rgba(212, 168, 53, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.brand-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    border-color: var(--accent);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px var(--glow);
}

.brand-logo {
    height: 120px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--glow));
}

.brand-logo img {
    max-height: 100%;
}

.brand-card h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px var(--glow);
    text-align: center;
}

.brand-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-align: center;
}

.brand-description {
    font-size: 1.1875rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.brand-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.brand-link:hover {
    gap: 1.5rem;
    text-shadow: 0 0 15px var(--glow);
}

.brand-link i {
    transition: transform 0.3s ease;
}

.brand-link:hover i {
    transform: translateX(10px);
}

.brand-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    opacity: 0.2;
    border-style: dashed;
}

.plus-circle {
    width: 200px;
    height: 200px;
    border: 4px dashed rgba(212, 168, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 168, 53, 0.4);
    font-size: 5rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About */
.about-section {
    background: rgba(42, 58, 42, 0.3);
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.about-content p {
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-card {
    background: rgba(42, 58, 42, 0.5);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 0;
    border-left: 6px solid var(--accent);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.philosophy-card:hover::before {
    left: 100%;
}

.philosophy-card:hover {
    transform: translateX(20px) translateY(-10px);
    border-left-color: var(--primary);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px var(--glow);
}

.philosophy-card h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px var(--glow);
}

.philosophy-card p {
    font-size: 1.1875rem;
    color: var(--text);
    line-height: 1.9;
}

/* Contact */
.contact-section {
    background: rgba(42, 58, 42, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 0;
    font-size: 1.125rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(42, 58, 42, 0.5);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--glow);
    background: rgba(42, 58, 42, 0.7);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--glow);
}

.form-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-info {
    background: rgba(42, 58, 42, 0.5);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-left: 6px solid var(--accent);
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px var(--glow);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.3125rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
    text-shadow: 0 0 15px var(--glow);
    transform: translateX(10px);
}

.contact-item i {
    color: var(--accent);
    width: 40px;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--glow));
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .brands-grid,
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero .subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .brands-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-card {
        padding: 2.5rem 1.5rem;
    }

    .brand-card h3 {
        font-size: 2rem;
    }

    .brand-description {
        font-size: 1rem;
    }

    .philosophy-card {
        padding: 2rem 1.5rem;
    }

    .philosophy-card h3 {
        font-size: 1.5rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        padding: 1rem 0;
    }

    .contact-item a {
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .brand-card {
        padding: 2rem 1rem;
    }

    .philosophy-card {
        padding: 1.5rem 1rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .hero-cta .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Success/Error Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    padding: 1.25rem 2rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    max-width: 400px;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s ease;
    border: 2px solid;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    background: rgba(34, 68, 34, 0.95);
    border-color: #4CAF50;
    color: #90EE90;
    backdrop-filter: blur(10px);
}

.notification.error {
    background: rgba(68, 34, 34, 0.95);
    border-color: #F44336;
    color: #FFB3B3;
    backdrop-filter: blur(10px);
}

.notification i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification.success i {
    color: #4CAF50;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

.notification.error i {
    color: #F44336;
    filter: drop-shadow(0 0 10px rgba(244, 67, 54, 0.5));
}

@media (max-width: 767px) {
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}
