/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

html.homepage-full,
html.homepage-full body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%) !important;
    background-attachment: fixed !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-box {
    padding: 0.5rem 1rem;
}

.logo-img {
    height: 70px;
    width: auto;
}

.logo-text {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #2a5298;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1e3c72;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.nav-mobile .nav-link {
    color: #1e3c72;
}

.nav-mobile.active {
    display: flex;
}

/* ==================== HOMEPAGE WRAPPER ==================== */
.homepage-wrapper {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    min-height: 100vh;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
    background: transparent !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("your-hero.png") center/cover no-repeat;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.title {
    color: white;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Password page title - smaller */
.password-page .title {
    font-size: 2.3rem;
}

/* Welcome Message Styles */
.welcome-message {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-message p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.welcome-message strong {
    color: white;
    font-weight: 700;
}

.subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== SERVICE SECTION (Direct Button) ==================== */
.service-section {
    padding: 80px 20px;
    background: transparent !important;
    position: relative;
}

.search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.go-button {
    width: 100%;
    padding: 1.25rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.go-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.go-button:active {
    transform: translateY(0);
}

/* ==================== OUR SERVICES SECTION ==================== */
.our-services-section {
    padding: 80px 20px;
    background: transparent !important;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 20px;
    background: transparent !important;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.company-reg {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item strong {
    color: white;
    min-width: 120px;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== PASSWORD PAGE ==================== */
.password-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
}

.password-page-wrapper {
    min-height: calc(100vh - 80px - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
}

.password-hero {
    width: 100%;
    padding: 2rem 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.password-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

.company-name {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: bold !important;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-wrapper {
    position: relative;
}

.password-input,
#usernameInput {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.password-input::placeholder,
#usernameInput::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.password-input-wrapper {
    position: relative;
}

#passwordInput {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.toggle-password:hover {
    color: white;
}

.error-message {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    text-align: center;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.help-section {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 12px;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.help-section p {
    margin-bottom: 0.5rem;
}

.whatsapp-button {
    width: 100%;
    padding: 0.75rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-top: 0.5rem;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #1fc455;
    transform: translateY(-2px);
}

.submit-button {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.request-password-button {
      padding: 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.9);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
}

.request-password-button:hover {
    background: rgba(255, 193, 7, 1);
    transform: translateY(-2px);
}

.back-button {
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.back-button:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* ==================== DATE SELECTION PAGE ==================== */
.date-selection-page-wrapper {
    min-height: calc(100vh - 80px - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
}

.date-selection-hero {
    width: 100%;
    padding: 2rem 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-selection-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.transparent-container {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    max-width: 900px !important;
    width: 100%;
}

/* Service Schedule Info Section */
.service-schedule-info {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.schedule-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

.schedule-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.schedule-item.days-remaining {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.date-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.date-list-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.date-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
}

.date-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.no-data-message {
    color: white !important;
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-weight: 600;
}

/* ==================== FAN SELECTION PAGE ==================== */
.fan-selection-page-wrapper {
    min-height: calc(100vh - 80px - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
}

.fan-selection-hero {
    width: 100%;
    padding: 2rem 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fan-selection-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.transparent-container {
    max-width: 1200px !important;
}

.fan-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.fan-grid-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fans-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.fan-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    color: white !important;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 180px;
    width: 100%;
}

.fan-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.fan-button .fan-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: white !important;
    line-height: 1.4;
}

.fan-button .arrow {
    font-size: 1.8rem;
    opacity: 0.8;
    color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .welcome-message {
        padding: 1.5rem;
    }
    
    .welcome-message p {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item strong {
        min-width: auto;
    }

    .fans-grid {
        grid-template-columns: 1fr !important;
    }

    .date-selection-page-wrapper,
    .fan-selection-page-wrapper,
    .password-page-wrapper {
        min-height: calc(100vh - 120px);
    }

    .fan-grid-container,
    .date-list-container {
        padding: 1rem;
    }

    .fan-button {
        padding: 2rem 1rem;
        min-height: 150px;
    }

    .transparent-container {
        max-width: 100% !important;
    }

    /* Service schedule responsive */
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .schedule-label,
    .schedule-value {
        font-size: 0.95rem;
    }

    .service-schedule-info {
        padding: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .fans-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        max-width: 100%;
    }
}




