/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Cookie Banner Styles - Modal in Center */
.cookie-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: #fff;
    max-width: 550px;
    width: 90%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.cookie-text {
    margin-bottom: 30px;
}

.cookie-text h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cookie-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cookie-text a {
    color: #93c5fd;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #10b981;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #059669;
}

.cookie-btn.reject {
    background: #ef4444;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #dc2626;
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    color: #333;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.cookie-option {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cookie-option label {
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Navigation */
.navbar {
    background: #1e3a5f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #60a5fa;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #10b981;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* Services Overview */
.services-overview {
    margin-bottom: 60px;
}

.services-overview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1e3a5f;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-card .price {
    font-weight: 700;
    color: #10b981;
}

/* Why Us Section */
.why-us {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.benefit {
    text-align: center;
}

.benefit h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.benefit p {
    color: #666;
}

/* Testimonials */
.testimonials {
    margin-bottom: 60px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.testimonial .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: 600;
    color: #1e3a5f;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: #fff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-info-brief {
    margin-bottom: 30px;
}

.contact-info-brief p {
    margin: 5px 0;
}

/* Content Sections */
.content-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #1e3a5f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.content-section h3 {
    color: #1e3a5f;
    margin: 25px 0 15px;
}

.content-section p {
    color: #555;
    margin-bottom: 15px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.value-card h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.team-member h4 {
    color: #1e3a5f;
    margin-bottom: 5px;
}

.team-member .role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%) !important;
    color: #fff;
}

.stats-section h2 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    opacity: 0.9;
}

/* Awards List */
.awards-list {
    list-style: none;
}

.awards-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.awards-list li:last-child {
    border-bottom: none;
}

/* Service Detail */
.service-detail {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.service-detail h3 {
    color: #1e3a5f;
    margin: 25px 0 15px;
}

.service-list {
    list-style: none;
    margin: 15px 0;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

/* Pricing Section */
.pricing-section {
    margin-top: 60px;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
}

.pricing-card .price-period {
    color: #888;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    margin-bottom: 8px;
}

/* Hours Section */
.hours-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.hours-card h3 {
    color: #1e3a5f;
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-table td:last-child {
    text-align: right;
    color: #10b981;
    font-weight: 600;
}

.hours-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

.holiday-list {
    list-style: none;
}

.holiday-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.support-hours {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: #fff;
}

.support-hours h3 {
    color: #fff;
}

.support-hours p {
    color: rgba(255, 255, 255, 0.9);
}

.support-hours .hours-note {
    color: rgba(255, 255, 255, 0.7);
}

/* Location Section */
.location-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-section h2 {
    color: #1e3a5f;
    margin-bottom: 30px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-info h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.location-info h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.location-info ul {
    list-style: none;
}

.location-info li {
    padding: 8px 0;
    color: #555;
}

.map-placeholder {
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #888;
}

/* Contact Form */
.form-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.form-section > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.submit-btn {
    padding: 15px 40px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #059669;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    color: #1e3a5f;
    margin-bottom: 30px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #555;
}

/* Footer */
.footer {
    background: #1e3a5f;
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.footer-section ul a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Dynamic Promotion Banner */
.promo-banner {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 50%, #dc2626 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    color: white;
    padding: 12px 20px;
    text-align: center;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-tag {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.promo-text {
    font-size: 1rem;
}

.promo-slots {
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Featured Service Card */
.service-card.featured {
    border: 3px solid #dc2626;
    position: relative;
    transform: scale(1.02);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.sale-price {
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Daily Special Section */
.daily-special {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.daily-special h2 {
    color: #92400e;
    margin-bottom: 20px;
}

.special-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.special-service {
    font-size: 1.3rem;
    font-weight: bold;
    color: #78350f;
}

.special-discount {
    background: #dc2626;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 8px;
}

.special-note {
    color: #92400e;
    font-style: italic;
}

