/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0288D1;        /* Sky Blue */
    --primary-dark: #01579B;         /* Deep Sky Blue */
    --accent-green: #FFA726;         /* Warm Amber */
    --secondary-color: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #fafafa;
    --bg-accent: #E1F5FE;            /* Light Sky Blue tint */
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
    --shadow-colored: 0 8px 25px rgba(2, 136, 209, 0.15);  /* Sky Blue shadow */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg,
        var(--text-dark) 0%,
        var(--text-dark) 30%,
        var(--primary-color) 50%,
        var(--text-dark) 70%,
        var(--text-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 6s ease-in-out infinite;
}

@keyframes blueFlow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01579B 0%, #0288D1 50%, #039BE5 100%);
    color: var(--white);
    padding: 9rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Info Bar */
.info-bar {
    background: var(--white);
    padding: 2.5rem 0;
    box-shadow: var(--shadow-lg);
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    border-radius: 16px;
    margin-left: 20px;
    margin-right: 20px;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

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

.info-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    word-break: break-word;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Why Choose Us */
.why-choose {
    background: var(--bg-accent);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.02;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-colored);
    border-color: var(--bg-accent);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--bg-accent), var(--white));
    border-radius: 16px;
    color: var(--primary-color);
    font-weight: 700;
    border: 2px solid var(--bg-accent);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services */
.services-preview,
.services-section {
    background: var(--white);
}

/* Services Navigation */
.services-nav-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 2px solid var(--bg-accent);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.services-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-link {
    padding: 0.7rem 1.5rem;
    background: var(--bg-accent);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

/* Featured Service Card */
.service-card.featured-service {
    border-left: 5px solid var(--accent-green);
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-accent) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-green);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(27, 94, 32, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
}

.service-highlight strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, var(--bg-accent) 50%);
    border-radius: 0 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-colored);
    background: var(--bg-accent);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Testimonials */
.testimonials-preview {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--bg-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--accent-green);
}

/* Review Header with Avatar and Yelp Logo */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.reviewer-name {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.yelp-elite-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #D32323, #B91C1C);
    color: var(--white);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(211, 35, 35, 0.3);
}

.yelp-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.yelp-text {
    color: #D32323;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card:hover .yelp-logo {
    opacity: 1;
}

/* Star Ratings with Sparkle Effect */
.star-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.star {
    color: #FFC107;
    display: inline-block;
    transition: all 0.3s ease;
}

.star.sparkle {
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.8),
                 0 0 20px rgba(255, 193, 7, 0.6),
                 0 0 30px rgba(255, 193, 7, 0.4);
}

.star.sparkle:nth-child(1) { animation-delay: 0s; }
.star.sparkle:nth-child(2) { animation-delay: 0.2s; }
.star.sparkle:nth-child(3) { animation-delay: 0.4s; }
.star.sparkle:nth-child(4) { animation-delay: 0.6s; }
.star.sparkle:nth-child(5) { animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        filter: brightness(1.3);
    }
}

.testimonial-card:hover .star.sparkle {
    animation: sparkleHover 0.6s ease-in-out infinite;
}

@keyframes sparkleHover {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
        filter: brightness(1.4);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
        filter: brightness(1.4);
    }
}

/* Large Star Rating for Stats */
.star-rating-large {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.star-rating-large .star {
    animation: sparkle 2.5s ease-in-out infinite;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Review Stats Section */
.review-stats-section {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 2px solid var(--bg-accent);
}

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

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.stat-box h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Elite Badge Explainer */
.elite-explainer {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--bg-accent), var(--white));
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border-left: 5px solid #D32323;
}

.elite-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.elite-badge-large span {
    font-weight: 700;
    color: #D32323;
    font-size: 1.1rem;
}

.elite-description h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.elite-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Trust Badges Section */
.trust-section {
    background: var(--white);
    padding: 5rem 0;
}

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

.trust-badge {
    text-align: center;
    padding: 2rem;
    background: var(--bg-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.trust-badge h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-accent);
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-colored);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Tips Page */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.tip-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
}

.tip-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    color: var(--white);
    padding: 1.5rem 2rem;
}

.tip-number {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.tip-header h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.tip-content {
    padding: 2rem;
}

.tip-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tip-highlight {
    background: var(--bg-accent);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 1rem;
}

.tip-highlight strong {
    color: var(--primary-color);
}

/* About Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-green) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-image {
    background: linear-gradient(135deg, var(--bg-accent), var(--white));
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    font-size: 5rem;
    color: var(--primary-color);
    font-weight: 700;
    border: 3px solid var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Info Centered Layout */
.contact-info-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-centered h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info-centered > p {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

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

.contact-items .contact-details {
    width: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    word-break: break-word;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Hours Table */
.hours-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

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

.hours-table th,
.hours-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.hours-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-green) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

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

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.social-btn:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: var(--primary-color);
}

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

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

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

/* Thanksgiving Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.4s ease;
    text-align: center;
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.popup-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.popup-close-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.popup-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close-x:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Mobile Responsiveness */
/* Tablet and medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .info-grid {
        gap: 2rem;
    }

    .info-item {
        min-width: 250px;
    }
}

@media (max-width: 968px) {
    .logo h2 {
        font-size: 1.3rem;
    }

    .services-nav-section {
        top: 60px;
        padding: 1rem 0;
    }

    .services-categories {
        gap: 0.5rem;
    }

    .category-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 6rem 0 5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .info-bar {
        margin-left: 15px;
        margin-right: 15px;
        padding: 2rem 0;
    }

    .info-grid {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        flex-direction: row;
        text-align: left;
        width: 100%;
        max-width: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .contact-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .about-image {
        min-height: 200px;
        font-size: 3rem;
        padding: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-bar {
        margin-left: 10px;
        margin-right: 10px;
        padding: 1.5rem 0;
    }

    .info-grid {
        gap: 1.25rem;
    }

    .info-item {
        max-width: 100%;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-text h4 {
        font-size: 0.9rem;
    }

    .info-text p {
        font-size: 0.85rem;
    }

    .about-hero {
        padding: 4rem 0 3rem;
    }

    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .contact-form h3,
    .contact-info h3 {
        font-size: 1.5rem;
    }

    .hours-table th,
    .hours-table td {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }

    .faq-item,
    .service-card {
        padding: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        padding: 1.5rem;
    }

    /* Testimonials Mobile Styles */
    .review-header {
        flex-direction: row;
        gap: 0.5rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }

    .yelp-elite-badge {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .yelp-elite-badge svg {
        width: 14px;
        height: 14px;
    }

    .yelp-logo svg {
        width: 20px;
        height: 20px;
    }

    .star-rating {
        font-size: 1.2rem;
    }

    .star-rating-large {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .elite-explainer {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .elite-badge-large {
        padding: 1rem;
    }

    .elite-description h3 {
        font-size: 1.2rem;
    }

    .elite-description p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p,
    .service-card p {
        font-size: 0.95rem;
    }

    .popup-content {
        padding: 2rem 1.5rem;
    }

    .popup-icon {
        font-size: 3rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .popup-content p {
        font-size: 0.95rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
    }
}

/* ========================================
   PREMIUM UI ENHANCEMENTS
   ======================================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Card Animations */
.feature-card,
.service-card,
.testimonial-card,
.trust-badge,
.faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.trust-badge:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(2, 136, 209, 0.2);
}

/* Feature card border effect already defined earlier - removed duplicate */

/* Pulse Animation for CTA Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(2, 136, 209, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(2, 136, 209, 0);
    }
}

/* Shimmer Effect on Buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Floating Animation for Trust Badges */
.trust-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Stat Number Count-up Animation */
.stat-number {
    font-weight: 700;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-green), #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 4px 20px rgba(255, 167, 38, 0.3);
    display: inline-block;
    transform-style: preserve-3d;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(15deg);
    }
}

/* Enhanced Section Headers with Gradient Text */
.section-header h2 {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    border-radius: 2px;
    animation: expandLine 0.6s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Hero Title Fade-in Animation */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

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

/* Scroll Indicator Animation */
.scroll-indicator {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Info Bar Icons Rotate on Hover */
.info-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover .info-icon svg {
    transform: rotate(360deg) scale(1.1);
    color: var(--accent-green);
}

/* Service Cards: Tilt Effect */
.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

/* Testimonial Stars Glow */
.testimonial-stars {
    animation: starGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

@keyframes starGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.8));
    }
}

/* Glassmorphism Effect for Navbar on Scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Footer Hover Effects */
.footer a {
    position: relative;
    transition: all 0.3s ease;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Social Buttons Enhanced */
.social-btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.3);
}

/* Loading State for Images */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* FAQ Items Accordion Effect */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--bg-accent);
    transform: translateX(10px);
    box-shadow: -5px 0 0 var(--primary-color);
}

/* Feature Icon - Simple Color */
.feature-icon {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--accent-green);
    transform: scale(1.1);
}

/* Animated Background Patterns */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.05));
    pointer-events: none;
}

/* Button Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Box Shadows on Scroll */
.service-card,
.testimonial-card,
.feature-card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Parallax Effect for Hero Background */
@media (prefers-reduced-motion: no-preference) {
    .hero {
        background-attachment: fixed;
        background-size: cover;
    }
}

/* Smooth Color Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Focus States for Accessibility - Removed per client request */
a:focus,
button:focus {
    outline: none;
}

/* Mobile: Reduce motion for better performance */
@media (max-width: 768px) {
    .feature-card:hover,
    .service-card:hover,
    .testimonial-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Falling Leaves Animation */
.leaves-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
    overflow: hidden;
}

.leaf {
    position: absolute;
    top: -100px;
    font-size: 2.5rem;
    opacity: 0;
    pointer-events: none;
    animation: leafFall 8s linear forwards;
}

@keyframes leafFall {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(75vh) translateX(40px) rotate(270deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 100px)) translateX(-10px) rotate(360deg);
    }
}