/* Sunrise Enterprises - Modern Premium UI */
:root {
    /* Brand Colors */
    --primary-color: #e60000;
    --primary-deep: #b30000;
    --primary-light: #ffebec;
    --accent-color: #ffd700;
    /* Yellow maintained */

    /* Neutrals */
    --dark: #121212;
    --text-primary: #1f1f1f;
    --text-secondary: #666666;
    --surface: #ffffff;
    --surface-alt: #f8f9fc;
    --border: #e2e8f0;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 20px -5px rgba(230, 0, 0, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    /* Modern san-serif */
    color: var(--text-secondary);
    background-color: var(--surface);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.display-1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Fallback controlled by specific implementation if needed, usually text-fill-color */
    -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
    .display-1 {
        font-size: 4.5rem;
    }
}

/* Components */
.btn-modern {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-modern-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-deep));
    z-index: -1;
    transition: var(--transition);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(230, 0, 0, 0.4);
}

.btn-modern-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-modern-outline:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: white;
}

/* Navbar */
.navbar-modern {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-modern .btn-modern {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    position: relative;
    font-size: 0.9rem;
}

.brand-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    top: -2px;
    right: -2px;
    border: 2px solid white;
}

/* Hero Section */
.hero-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 90% 10%, var(--primary-light) 0%, transparent 40%);
    position: relative;
    padding-top: 80px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid var(--primary-light);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Section Styling */
.section-wrapper {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 16px;
}

/* Gift Cards */
.gift-card-modern {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gift-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gift-image-box {
    background: var(--surface-alt);
    border-radius: var(--radius-sm);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.gift-card-modern:hover .gift-image-box {
    background: var(--primary-light);
}

.gift-image-box img {
    height: 120px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gift-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* Rewards Timeline */
.timeline-modern {
    position: relative;
    padding: 40px 0;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 24px;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.5);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Grand Prize Modern */
.grand-prize-wrapper {
    background: #000;
    border-radius: var(--radius-lg);
    padding: 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.grand-prize-content h2 {
    color: white;
}

.prize-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

/* Contact Modern */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    padding: 40px;
    background: var(--surface-alt);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-modern::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 11px;
        right: auto;
    }

    .display-1 {
        font-size: 2.5rem;
    }

    .hero-wrapper {
        text-align: center;
        padding-top: 120px;
    }

    .hero-stats {
        justify-content: center;
    }

    .grand-prize-wrapper {
        padding: 40px 20px;
    }
}