* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2b4a;
    --navy-light: #2d4263;
    --accent: #4a90e2;
    --text-light: #e8eef5;
    --bg-light: #f5f7fa;
    --white: #ffffff;
}

body {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    overflow-x: hidden;
    letter-spacing: 1px;
}

.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation-name: snowfall;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #fff;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes snowfall {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(15px, 100vh, 0) rotate(360deg);
    }
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    padding-top: 40px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.nav-container.hidden {
    transform: translateY(-100%);
}

nav {
    padding: 1.2rem 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

nav .logo img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: var(--white);
    padding: 5px;
}

nav .logo-text {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

nav .logo span {
    color: var(--white);
}

.dropdown {
    position: relative;
    margin-right: 2rem;
}

.dropdown-button {
    background: var(--accent);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
    min-width: 150px;
    justify-content: space-between;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.dropdown-button:hover {
    background: #3a7bc8;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: var(--navy);
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1001;
    pointer-events: none;
}

.christmas-lights .wire {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    top: 0;
}

.christmas-lights .light {
    position: absolute;
    width: 12px;
    height: 16px;
    border-radius: 50% 50% 40% 40%;
    top: 2px;
    animation: twinkle 1.5s infinite;
}

.christmas-lights .light:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: #1a1a1a;
    top: -4px;
    border-radius: 3px;
}

.christmas-lights .light.red {
    background: radial-gradient(circle, #ff4444, #cc0000);
    box-shadow: 0 0 10px #ff0000;
    animation-delay: 0s;
}

.christmas-lights .light.green {
    background: radial-gradient(circle, #44ff44, #00cc00);
    box-shadow: 0 0 10px #00ff00;
    animation-delay: 0.5s;
}

.christmas-lights .light.blue {
    background: radial-gradient(circle, #4444ff, #0000cc);
    box-shadow: 0 0 10px #0000ff;
    animation-delay: 1s;
}

.christmas-lights .light.yellow {
    background: radial-gradient(circle, #ffff44, #ffcc00);
    box-shadow: 0 0 10px #ffff00;
    animation-delay: 0.75s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 4rem 5% 3.5rem;
    text-align: center;
}

#about .hero {
    display: none;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.hero .highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin: 0 0.5rem;
}

.cta-button:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
    border: 1px solid #e8eef5;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-card .price {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
}

.referral-highlight {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    border: 3px solid #357abd;
}

.referral-highlight h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.referral-highlight .referral-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.referral-highlight p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.referral-highlight .price-tag {
    background: var(--white);
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.referral-highlight .sub-text {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid var(--accent);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8eef5;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.reviewer-name {
    font-weight: 600;
    color: var(--navy);
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--navy);
}

.verified-badge {
    color: var(--accent);
}

.about-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.about-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.about-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.contact-box h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent);
}

.contact-item a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

#services .contact-info {
    display: none;
}

footer {
    background: var(--navy);
    color: var(--text-light);
    padding: 2rem 5%;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .footer-left {
    font-weight: 600;
    font-size: 1.1rem;
}

footer .footer-right {
    text-align: right;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.referral-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 74, 0.95);
    color: white;
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

.referral-notification.show {
    display: flex;
}

.notification-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.notification-content h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.notification-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #666;
}

.notification-content .price {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.notification-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.notification-content .close-btn:hover {
    opacity: 1;
}

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

.page-content {
    padding-top: 120px;
}

@media (max-width: 768px) {
    .nav-container {
        padding-top: 35px;
    }
    
    nav .logo {
        margin-left: 0;
    }
    
    .dropdown {
        margin-right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-right {
        text-align: center;
    }

    .notification-content {
        padding: 2rem;
        width: 95%;
    }

    .notification-content h4 {
        font-size: 1.8rem;
    }

    .referral-highlight {
        padding: 2rem;
    }

    .referral-highlight h3 {
        font-size: 1.8rem;
    }

    .referral-highlight .price-tag {
        font-size: 1.5rem;
    }
}

#contact {
    min-height: 100vh;
    background: #ffffff;
}

#contact .page-content {
    padding-top: 120px;
}

#contact .hero {
    display: block;
}

#contact .content {
    display: block;
}