:root {
    --color-primary: #FFD500; /* Vibrant Yellow */
    --color-primary-dark: #E6C000;
    --color-background: #FFFFFF;
    --color-surface: #FAFAFA;
    --color-text: #111111;
    --color-text-light: #555555;
    --color-border: #EEEEEE;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-on-load {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Layout */
.header {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

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

.main-content {
    max-width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Hero Section */
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight {
    color: transparent;
    background: linear-gradient(135deg, var(--color-text) 0%, #333 100%);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-primary);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
    transform: rotate(-1deg);
}

.subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto;
}

.cta-group {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-text);
    box-shadow: 0 10px 20px -5px rgba(255, 213, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(255, 213, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--color-text);
    color: var(--color-background);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: #222;
}

.icon {
    flex-shrink: 0;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.feature-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.highlight-card {
    background: linear-gradient(to bottom right, #ffffff, #fffdf0);
    border: 2px solid var(--color-primary);
}

.highlight-card::before {
    content: 'Promo';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--color-primary);
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.highlight-card .feature-icon {
    background: #FFF9D6;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Location Section */
.location {
    background: var(--color-text);
    color: var(--color-background);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 213, 0, 0.15), transparent 60%);
    pointer-events: none;
}

.location-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.location h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.location p {
    color: #CCC;
}

.location address {
    font-style: normal;
    font-size: 1.125rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.location address strong {
    color: var(--color-background);
    display: block;
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.875rem;
    background: var(--color-surface);
}

.footer-contact {
    margin-top: 0.5rem;
    font-weight: 600;
}

.footer-contact a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-primary-dark);
}

/* Desktop Enhancements */
@media (min-width: 768px) {
    .main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 1.25rem;
        max-width: 600px;
    }

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

    .location {
        padding: 4rem;
    }
}

