/* ==================== 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%);
}

html {
    scroll-behavior: smooth;
}

.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-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.1rem;
    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;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
    background: url("your-hero.png") center/cover no-repeat;
}

.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.2rem;
    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 (Search Box) ==================== */
.service-section {
    padding: 80px 20px;
    background: gradient(135deg, #00ABEC 0%, #00A2E2 100%);
    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);
}

.search-form {
    position: relative;
}

.search-box {
    margin-bottom: 1rem;
}

#searchInput {
    width: 100%;
    padding: 1.25rem 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;
    transition: all 0.3s;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#searchInput:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 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);
    margin-bottom: 1rem;
}

.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);
}

.suggestions-list {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.suggestions-list.active {
    display: block;
}

.suggestion-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.3);
    padding-left: 2rem;
}

/* ==================== OUR SERVICES SECTION ==================== */
.our-services-section {
    padding: 80px 20px;
    background: gradient(135deg, #00ABEC 0%, #00A2E2 100%);
}

.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: gradient(135deg, #00ABEC 0%, #00A2E2 100%);
}

.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 .hero {
    padding-top: 100px;
    min-height: auto;
}

.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);
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.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;
}

#passwordInput::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.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;
}

.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); /* Amber/Gold color */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.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-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-history {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.history-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.history-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.history-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Label text (Last Service Date / Next Service Date) */
.history-info p:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Actual date value */
.history-info p:nth-child(2) {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.3rem !important;
}

/* Days countdown text */
.history-days {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 700; 
}

#dateInput {
    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;
    margin-bottom: 1rem;
}

#dateInput::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.available-dates {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.available-dates p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1rem;
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.date-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.date-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.date-item span:first-child {
    font-weight: 600;
}

.date-item span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ==================== FAN SELECTION PAGE ==================== */
.fans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fan-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.fan-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fan-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.fan-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.fan-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.view-report-button {
    width: 100%;
    padding: 0.75rem;
    background: #1a73e8;
    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;
}

.view-report-button:hover {
    background: #0d5bbd;
    transform: scale(1.05);
}

/* ==================== 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;
    }
    
    .fans-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .history-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item strong {
        min-width: auto;
    }
}

/* ==================== SCROLLBAR ==================== */
.suggestions-list::-webkit-scrollbar,
.dates-list::-webkit-scrollbar {
    width: 8px;
}

.suggestions-list::-webkit-scrollbar-track,
.dates-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.suggestions-list::-webkit-scrollbar-thumb,
.dates-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.suggestions-list::-webkit-scrollbar-thumb:hover,
.dates-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ==================== CUSTOM LOGO ==================== */
.logo-img {
    height: 70px;  /* change size if needed */
    width: auto;

}
/* ------------------------------------------------ */
/* HERO SECTION BACKGROUND IMAGE STYLE              */
/* ------------------------------------------------ */

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;  /* Height of hero */
}































