:root {
    --primary: #1a2a5e;
    --secondary: #243470;
    --accent: #1a2a5e;
    --accent-light: #2c3e8c;
    --text: #1a2a5e;
    --text-muted: #5a6a9a;
    --text-dark: #1a2a5e;
    --bg-dark: #f5f0e8;
    --bg-light: #faf7f0;
    --gold: #d4a017;
    --gold-light: #e8b82a;
    --egg-green: #a8c5a0;
    --egg-green-light: #c2d9bb;
    --gradient-1: linear-gradient(135deg, #1a2a5e 0%, #2c3e8c 100%);
    --gradient-2: linear-gradient(135deg, #f5f0e8 0%, #ede5d0 100%);
    --gradient-gold: linear-gradient(135deg, #d4a017 0%, #e8b82a 100%);
    --shadow: 0 20px 60px rgba(26, 42, 94, 0.15);
    --shadow-lg: 0 30px 80px rgba(26, 42, 94, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Particle Background */
.particles-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(ellipse at top, #f5f0e8 0%, #ede5d0 100%);
}

.particles-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 42, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 197, 160, 0.07) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.8;
    }
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 42, 94, 0.12);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: 0 10px 40px rgba(26, 42, 94, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1002;
}

.logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 42, 94, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 197, 160, 0.2) 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.92) 0%, rgba(237, 229, 208, 0.88) 50%, rgba(250, 247, 240, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.3s backwards;
}

.hero-icon {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(26, 42, 94, 0.2));
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero h1 {
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease 0.5s backwards;
}

.hero-title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 0.3rem;
    animation: fadeIn 1s ease 0.7s backwards;
    letter-spacing: 2px;
}

.hero-highlight {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease 0.9s backwards;
    letter-spacing: 2px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease 1.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease 1.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-1);
    color: #f5f0e8;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 42, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(26, 42, 94, 0.08);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeIn 1s ease 2s backwards, bounce 2s ease-in-out 2.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.35);
    border-radius: 50px;
    color: #a07810;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 197, 160, 0.12) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 4rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Products Section */
.products {
    background: rgba(168, 197, 160, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(255, 252, 245, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 42, 94, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 42, 94, 0.06);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 160, 23, 0.35);
    box-shadow: var(--shadow-lg);
}

.product-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border: 1px solid rgba(26, 42, 94, 0.1);
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-logo {
    transform: scale(1.1) rotate(5deg);
}

.marketplace-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.product-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: #f5f0e8;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.product-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 42, 94, 0.3);
}

/* Location Section */
.location {
    background: linear-gradient(180deg, rgba(168, 197, 160, 0.1) 0%, transparent 100%);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.location-map {
    position: sticky;
    top: 120px;
}

.map-container {
    background: var(--gradient-2);
    border: 1px solid rgba(26, 42, 94, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(26, 42, 94, 0.1);
}

.map-embed iframe {
    display: block;
    width: 100%;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.btn-map {
    background: var(--gradient-1);
    color: #f5f0e8;
}

.map-actions .btn-secondary {
    background: rgba(26, 42, 94, 0.06);
    color: var(--primary);
    border: 2px solid rgba(26, 42, 94, 0.2);
}

.map-actions .btn-secondary:hover {
    background: rgba(26, 42, 94, 0.12);
}

/* Footer */
.footer {
    background: var(--primary);
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-logo-text small {
    font-size: 0.7rem;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    color: #f5f0e8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact li {
    color: rgba(245, 240, 232, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.footer-bottom p {
    color: rgba(245, 240, 232, 0.45);
    font-size: 0.9rem;
}

/* Animations for scroll reveal */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .location-map {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 200px;
        height: calc(100vh - 80px);
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        gap: 1.5rem;
        align-items: flex-start;
        box-shadow: -10px 0 30px rgba(26, 42, 94, 0.15);
        border-left: 1px solid rgba(26, 42, 94, 0.12);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        padding: 6rem 5% 4rem;
    }

    .scroll-indicator {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    section {
        padding: 5rem 0;
    }

    .about-stats {
        gap: 2rem;
    }

    .product-logo {
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .hero-icon {
        height: 80px;
    }

    .map-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        height: 40px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .product-card {
        padding: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-logo {
        width: 70px;
        height: 70px;
        padding: 12px;
    }

    .hero-icon {
        height: 60px;
    }

    .map-actions .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}