:root {
    --primary-color: #E31837; /* Crimson Red */
    --accent-color: #D32F2F;  /* Deep Red */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #FFFFFF;
    --bg-alt: #F8F9FA;
    --bg-dark: #1A1A1A;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(227, 24, 55, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1200px;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

span.subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header.scrolled .logo {
    color: var(--bg-dark);
    text-shadow: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header.scrolled .nav-links a {
    color: var(--text-color);
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

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

/* Modal Stylings */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    width: 85%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    animation: modalSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.modal-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('drone.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.7) 100%),
                linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    animation: float 4s ease-in-out infinite;
}

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

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: #F8F8F8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 24, 55, 0.2);
}

.btn-outline {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: var(--bg-dark);
}

.btn-gold {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-gold:hover {
    background: var(--primary-color);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* About & Stats */
section {
    padding: 8rem 0;
}

.about {
    background: var(--bg-alt);
}

.section-header.center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-top: 0.5rem;
}

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

.stat-card {
    background: white;
    border: 1px solid #EEE;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-strip {
    text-align: center;
    margin-top: 4rem;
}

.contact-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1.5rem 2.5rem;
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
    display: inline-block;
    transition: var(--transition);
    line-height: 1.2;
}

.contact-link:hover {
    background: rgba(227, 24, 55, 0.05);
    transform: translateY(-5px);
}

.contact-link span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Features */
.features {
    background: white;
    text-align: center;
}

.features-container {
    max-width: 800px;
}

.features-content p {
    margin: 0 auto 2.5rem;
}

.feature-list.centered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: left;
}

.feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #F0F0F0;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.nutrient-highlight {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

.nutrient-highlight h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* A1 Chicken Section */
.a1-card {
    background: white;
    border-radius: 32px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 600px;
    border: 1px solid #EEE;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.a1-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.a1-content h2 {
    font-size: 3.5rem;
    margin: 1rem 0;
}

.badge {
    background: #FFE5E5;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: inline-block;
}

.location-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.a1-perks {
    list-style: none;
    margin: 2rem 0;
}

.a1-perks li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.a1-contacts {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.a1-visual {
    flex: 1.2;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Gallery Section */
.gallery {
    background: var(--bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Location */
.location {
    padding-bottom: 12rem;
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.map-container img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.map-btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 20px rgba(227, 24, 55, 0.4);
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Footer Section Refinement */
footer {
    background: #000000;
    color: white;
    padding: 8rem 0 4rem;
    border-radius: 100px 100px 0 0; /* More rounded */
    margin-top: -100px; /* Adjust overlap */
    position: relative;
    z-index: 50;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-about p {
    max-width: 400px;
    margin-top: 1.5rem;
    color: #AAA;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #AAA;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

/* Reveals & Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .grid-2, .a1-card {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .a1-visual {
        width: 100%;
        height: auto;
        min-height: 300px;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-color);
        text-shadow: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .a1-content {
        padding: 2rem;
    }

    .a1-content h2 {
        font-size: 2.5rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    .a1-contacts {
        flex-direction: column;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 350px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .feature-list.centered {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}
