:root {
    /* Solar Theme - Modern & Clean */
    --primary-color: #2D4A8C;
    --primary-dark: #1E3A6E;
    --accent-color: #FFD700;
    --gold-color: #FFD700;
    --text-primary: #1a1a2e;
    --text-secondary: #666666;
    --text-white: #ffffff;
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(45, 74, 140, 0.2);
    --primary-gradient: linear-gradient(135deg, #2D4A8C 0%, #1E3A6E 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 0;
    font-weight: 400;
}

/* Hide any theme toggle button */
.theme-toggle {
    display: none !important;
    visibility: hidden !important;
}


/* Header & Navigation */
header {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px var(--shadow-strong);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
    border-bottom: 1px solid var(--border-color);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    animation: slideInFromRight 0.6s ease-out backwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transform: translateY(0);
    background: transparent;
}

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

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:hover::after {
    width: 90%;
    box-shadow: 0 0 15px var(--accent-color), 0 0 25px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(45, 74, 140, 0.05);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    letter-spacing: 0.5px;
}

.nav-links a:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }
    51%, 100% {
        border-color: var(--accent-color);
    }
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 12rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    z-index: 0;
    isolation: isolate;
}


.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out, glow 2s ease-in-out infinite alternate;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    line-height: 1.2;
    position: relative;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    line-height: 1.2;
    position: relative;
    min-height: 80px;
    color: var(--text-white);
}

.typewriter-text {
    display: inline-block;
    border-right: 3px solid var(--accent-color);
    padding-right: 10px;
    animation: blink 1s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

.hero-underline {
    width: 150px;
    height: 3px;
    background: var(--gold-color);
    margin: 1rem auto 2rem;
    border-radius: 2px;
    animation: expand 1s ease-out 0.5s both;
}



.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 300;
}

@keyframes glow {
    from { text-shadow: 2px 2px 10px rgba(0,0,0,0.2), 0 0 20px rgba(255,255,255,0.1); }
    to { text-shadow: 2px 2px 10px rgba(0,0,0,0.2), 0 0 30px rgba(255,255,255,0.3); }
}

@keyframes expand {
    from { width: 0; }
    to { width: 100px; }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #ffed4e;
    color: var(--text-primary);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Google Button Animations */
@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), 0 0 0 0 rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), 0 0 20px 5px rgba(255, 215, 0, 0.4);
    }
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-google-hero {
    animation: buttonGlow 3s ease-in-out infinite, fadeInUp 0.8s ease-out 0.6s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--accent-color) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-google-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(45, 74, 140, 0.6), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(45, 74, 140, 0.5);
    z-index: 1;
}

.btn-google-hero:hover::after {
    width: 90%;
    box-shadow: 0 0 15px rgba(45, 74, 140, 0.7), 0 0 25px rgba(45, 74, 140, 0.5);
}

.btn-google-hero:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 0 30px 5px rgba(255, 215, 0, 0.4) !important;
    background: #ffed4e !important;
    letter-spacing: 0.5px;
}

.btn-google-hero:hover .button-shine {
    animation: buttonShine 1.5s ease-in-out infinite;
}

.btn-google-hero:active {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

.btn-google-hero > * {
    position: relative;
    z-index: 2;
}

.button-shine {
    pointer-events: none;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-strong);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out both;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-strong);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-choose-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.why-image-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.why-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: slideInLeft 0.8s ease-out;
    z-index: 2;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    to { width: 80px; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-choose-us > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary) !important;
    margin-bottom: 4rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-strong);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-strong);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 2rem;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 15s infinite ease-in-out;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem;
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    color: #ffffff;
}

.stat-item.animate-in {
    animation: scaleIn 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: countUp 1s ease-out;
    position: relative;
    z-index: 3;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.stat-label {
    font-size: 1.2rem;
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 3;
    display: block;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    animation: fadeIn 0.8s ease-out;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out both;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--card-bg);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-strong);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-card:hover .step-number {
    transform: scale(1.15);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    animation: fadeIn 0.8s ease-out;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-strong);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-strong);
    border-color: var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

.rating-stars {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    animation: fadeIn 0.8s ease-out;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    opacity: 0;
    transform: translateX(-20px);
}

.faq-item.animate-in {
    animation: slideInRight 0.5s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.map-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
    animation: fadeIn 0.8s ease-out;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

#landingMap {
    width: 100%;
    height: 100%;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.3;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-section .cta-buttons {
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
}

.footer-section.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Success Card */
.success-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow-strong);
    text-align: center;
    z-index: 10000;
    max-width: 400px;
    width: 90%;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(45, 74, 140, 0.3);
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    position: absolute;
    top: -10px;
    animation: confettiFall 3s linear forwards;
    z-index: 9999;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: #c9a028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--text-white);
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Dashboard */
.dashboard {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.dashboard-header {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Profile Setup */
.profile-setup {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-setup h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.map-setup {
    margin: 2rem 0;
}

.map-setup h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-search-container {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--bg-primary);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.map-search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
}

.map-search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.map-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.15), 0 4px 20px rgba(139, 69, 19, 0.1);
    transform: translateY(-1px);
    background: white;
}

.map-search-input:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
}

.map-search-container::before {
    content: '🔍';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

.map-search-btn {
    padding: 1rem 2rem;
    background: var(--gold-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.map-search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.map-search-btn:hover::before {
    width: 300px;
    height: 300px;
}

.map-search-btn:hover {
    background: #c9a028;
    color: var(--text-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.map-search-btn:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 15px var(--shadow-hover);
}

.map-search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 8px 25px rgba(212, 175, 55, 0.3);
}

#naaiMap {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item .delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Naai Cards */
.naai-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.naai-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.naai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.naai-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.naai-card .rating {
    color: var(--gold-color);
    font-weight: bold;
    margin: 0.5rem 0;
}

.naai-card .phone {
    color: #666;
    margin: 0.5rem 0;
}

.naai-card .distance {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.naai-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.naai-actions .btn {
    flex: 1;
    padding: 0.7rem;
    font-size: 0.9rem;
    text-align: center;
}

.btn-message {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-message:hover {
    background: var(--brown-dark);
}

.btn-book {
    background: var(--gold-color);
    color: var(--bg-dark);
}

.btn-book:hover {
    background: #c9a028;
    color: var(--text-white);
}

.btn-view {
    background: var(--secondary-color);
    color: var(--text-white);
}

.btn-view:hover {
    background: var(--brown-dark);
}

/* Customer Location Setup */
.location-setup {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#customerMap {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Messages Container */
.messages-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 600px;
}

.messages-sidebar {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    max-height: 600px;
}

.messages-sidebar h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.customer-item {
    display: block;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.customer-item:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.customer-item.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
}

.customer-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.customer-last-message {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-item.active .customer-last-message {
    color: rgba(255, 255, 255, 0.9);
}

.customer-time {
    font-size: 0.8rem;
    color: #999;
}

.customer-item.active .customer-time {
    color: rgba(255, 255, 255, 0.8);
}

.messages-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.messages-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    max-height: 450px;
}

.message-bubble {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    max-width: 70%;
    animation: fadeIn 0.3s ease;
}

.message-bubble.sent {
    background: var(--primary-gradient);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 3px;
}

.message-bubble.received {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 3px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.message-text {
    line-height: 1.6;
}

.message-reply-form {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.message-reply-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
}

.message-reply-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.no-message-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 1.1rem;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 1rem 0;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--gold-color);
}

.rating-input input[type="radio"]:checked ~ label {
    color: var(--gold-color);
}

/* Bookings Container */
.bookings-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bookings-list {
    display: grid;
    gap: 1.5rem;
}

.booking-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.booking-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.booking-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.booking-email {
    color: #666;
    font-size: 0.9rem;
}

.booking-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.booking-details {
    margin-bottom: 1rem;
}

.booking-details p {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.booking-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-approve {
    background: var(--gold-color);
    color: var(--bg-dark);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-approve:hover {
    background: #c9a028;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.btn-reject {
    background: #dc3545;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.no-bookings {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Upcoming Booking Countdown */
.upcoming-booking-card {
    background: linear-gradient(135deg, var(--primary-color), var(--brown-dark));
    color: var(--text-white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    animation: fadeIn 0.5s ease;
    border: 2px solid var(--gold-color);
}

.upcoming-booking-card h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.booking-info {
    margin-bottom: 1.5rem;
}

.booking-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Admin Dashboard Styles */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 15px;
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.stat-info p {
    color: #666;
    font-size: 0.9rem;
}

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

.admin-option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.admin-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow-hover);
    border-color: var(--primary-color);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(45, 74, 140, 0.3));
    transition: all 0.3s ease;
}

.option-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.admin-option-card:hover .option-icon {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(45, 74, 140, 0.4));
}

.admin-option-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.admin-option-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Admin Table */
.admin-table-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--primary-gradient);
    color: white;
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.admin-table tbody tr:hover {
    background: var(--bg-secondary);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Security Container */
.security-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.security-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.security-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.security-section > p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-options {
        grid-template-columns: 1fr;
    }
    
    .security-container {
        grid-template-columns: 1fr;
    }
    
    .admin-table-container {
        overflow-x: scroll;
    }
    
    .admin-table {
        min-width: 600px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timing Setup Styles */
.timing-setup {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.day-timing-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.day-timing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.day-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.timing-options {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.timing-type-select {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.timing-type-select label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.add-slot-btn, .remove-slot {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-slot-btn:hover {
    background: var(--brown-dark);
}

.remove-slot {
    background: #dc3545;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
}

.remove-slot:hover {
    background: #c82333;
}

.slot-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.slot-row input[type="time"] {
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Off Hours Styles */
.off-hours-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.off-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.off-hours-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.off-hours-info {
    flex: 1;
}

/* Google Sign-In Button */
#googleSignIn, #googleSignUp {
    transition: all 0.3s ease;
}

#googleSignIn:hover, #googleSignUp:hover {
    background: #f8f9fa !important;
    border-color: #4285F4 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

#googleSignIn:active, #googleSignUp:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps::before {
        display: none;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .hero {
        padding: 10rem 1.5rem 6rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        min-height: 80px;
    }
    
    .why-choose-us h2,
    .how-it-works h2,
    .testimonials h2,
    .faq-section h2,
    .map-section h2 {
        font-size: 2rem;
    }
    
    .map-search-container {
        flex-direction: column;
        padding: 0.75rem;
    }
    
    .map-search-container::before {
        left: 1.75rem;
        top: 3.5rem;
    }
    
    .map-search-input {
        padding-left: 3.5rem;
        width: 100%;
    }
    
    .map-search-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .messages-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .messages-sidebar {
        max-height: 300px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    .rating-input {
        gap: 0.3rem;
    }
    
    .rating-input label {
        font-size: 1.5rem;
    }
}

