/* Scoopy Co - Universal Stylesheet */
/* Consolidated CSS for improved performance and Core Web Vitals */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: 2rem;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333 !important;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    opacity: 1 !important;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FF8C42;
    color: #fff;
    border: 2px solid #FF8C42;
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.28);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #F5652E;
    color: #fff;
    border: 2px solid #F5652E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn:focus, .btn-primary:focus, .btn-secondary:focus {
    outline: 2px solid #0EA5E9;
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 50%, #6DD5D1 100%);
    padding: 6rem 2rem 3rem;
    text-align: center;
    margin-top: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    color: white;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Section Styles */
.section {
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-label {
    color: #249b8a;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Promise Grid */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.promise-card {
    text-align: center;
    padding: 2rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(94,205,196,0.3);
}

.promise-card h3 {
    margin-bottom: 1rem;
}

.promise-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-header {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 100%);
    color: white;
    padding: 2rem;
}

.service-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
}

.service-body {
    padding: 2rem;
}

.service-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-body li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-body li:before {
    content: '•';
    color: #5ECDC4;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 50%, #6DD5D1 100%);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
}

.rating-display {
    text-align: center;
    margin: 2rem 0;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    margin-right: 1rem;
}

.stars {
    color: #FFB400;
    font-size: 1.5rem;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-stars {
    color: #FFB400;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
}

.review-location {
    color: #999;
    font-size: 0.9rem;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.location-card h3 {
    margin: 1rem 0;
}

.location-card p {
    color: #666;
    margin-bottom: 1rem;
}

.location-services {
    list-style: none;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-arrow {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 50%, #6DD5D1 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 0 1 auto;
    min-width: 280px;
}

.footer-navigation {
    flex: 0 1 auto;
}

.footer-contact-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
}

.footer-nav-item {
    margin-bottom: 0.75rem;
}

.footer-nav-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-nav-item a:hover {
    color: #5ECDC4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #333;
    }

    .dropdown-content {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        display: none;
        margin: 0.5rem 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column:first-child {
        flex: 1;
        min-width: 100%;
    }
    
    .footer-navigation > div {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ===========================
   BLOG STYLES
   =========================== */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 100%);
    padding: 6rem 2rem 3rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-header > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Blog Search */
.blog-search {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1rem;
}

.search-input::placeholder {
    color: rgba(0,0,0,0.5);
}

/* Blog Categories */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 0 2rem;
}

.category-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.category-tag:hover {
    background: rgba(255,255,255,0.3);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: #5ECDC4;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-title:hover {
    color: #4EBDB5;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 5rem 1rem 2rem;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-search {
        padding: 0 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .blog-card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}

/* ===========================
   GUARANTEE PAGE STYLES
   =========================== */

.guarantee-grid {
    max-width: 900px;
    margin: 3rem auto;
}

.guarantee-card {
    background: white;
    border-left: 5px solid #4EBDB5;
    padding: 2rem 2rem 2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.guarantee-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left-width: 8px;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.guarantee-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
}

.guarantee-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 0;
}

.guarantee-card p strong {
    color: #333;
    font-weight: 600;
}

/* How to Claim Section */
.how-to-claim {
    background: linear-gradient(135deg, #4EBDB5 0%, #5ECDC4 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
    color: white;
}

.how-to-claim h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.claim-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #4EBDB5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.claim-step h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.claim-step p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
}

/* CTA Box */
.cta-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-box h3 {
    color: #333;
}

.cta-box .btn {
    margin: 0.5rem;
    display: inline-block;
}

.btn-secondary {
    background: white;
    color: #4EBDB5;
    border: 2px solid #4EBDB5;
}

.btn-secondary:hover {
    background: #4EBDB5;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-arrow {
    color: #4EBDB5;
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Guarantee Page Responsive */
@media (max-width: 768px) {
    .guarantee-card {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .guarantee-icon {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .guarantee-card h3 {
        display: block;
    }
    
    .how-to-claim {
        padding: 2rem 1.5rem;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-box .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}
