/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2c3e50;
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    margin-right: 0.5rem;
    color: #667eea;
    font-size: 2rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-contact i {
    color: #667eea;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    position: relative;
}

.main-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Full width container adjustments */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Banner Section */
.banner-section {
    margin-bottom: 4rem;
    position: relative;
}

.banner-container {
    text-align: center;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

.banner-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 25px;
    filter: brightness(1.1) contrast(1.1);
}

/* WhatsApp Section */
.whatsapp-section {
    margin-bottom: 4rem;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin: 0 20px 4rem 20px;
    position: relative;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
}

.whatsapp-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 220px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.whatsapp-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-decoration: none;
}

.set-ticket {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.single-ticket {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.8rem;
}

.btn-text {
    font-size: 1.1rem;
}

.btn-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 4rem;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin: 0 20px 4rem 20px;
}

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

.schedule-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 20px 20px 0 0;
}

.schedule-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.schedule-item .day {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.schedule-item .lottery-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.schedule-item .lottery-code {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

/* Location Section */
.location-section {
    margin-bottom: 4rem;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin: 0 20px 4rem 20px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.location-icon {
    font-size: 3rem;
    color: #ffd700;
    min-width: 80px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.location-details h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.location-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-bottom: 4rem;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin: 0 20px 4rem 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: #ffd700;
    min-width: 50px;
    margin-top: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-details h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.phone-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #ffed4e;
    transform: translateX(5px);
}

.whatsapp-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(78, 205, 196, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.whatsapp-link:hover {
    color: #44a08d;
    background: rgba(78, 205, 196, 0.2);
    transform: translateX(3px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    margin: 0;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.social-link {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-contact {
        margin-top: 0.5rem;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 1rem 0;
    }
    
    .banner-section,
    .whatsapp-section,
    .schedule-section,
    .location-section,
    .contact-section {
        margin-bottom: 2rem;
    }
    
    .whatsapp-section,
    .schedule-section,
    .location-section,
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .schedule-item {
        padding: 1rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .banner-image {
        max-height: 200px;
        object-fit: contain;
    }
    
    .whatsapp-btn {
        background: none !important;
        color: black !important;
        border: 1px solid black;
    }
}
