/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    text-decoration: none;
    color: #fff;
    background-color: #0073aa;
    padding: 8px 16px;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #0069ff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056cc;
    transform: translateY(-2px);
    box-shadow: 0 0 10px #0055ccb2;
}

.btn-secondary {
    background-color: transparent;
    color: #0069ff;
    border: 2px solid #0069ff;
}

.btn-secondary:hover {
    background-color: #0069ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 105, 255, 0.5);
}

.btn-secondary-inverted {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary-inverted:hover {
    background-color: #667eea;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

/* Section Styling */
.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0069ff;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: #0069ff;
    margin: 20px auto;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e1e5e9;
    z-index: 1000;
    transition: all 0.3s ease;
}

.desktop-header {
    display: block;
}

.mobile-header {
    display: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 50px;
    width: auto;
}

.site-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: #1a1a1a;
}

.main-navigation {
    margin-right: 32px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.menu-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.menu-link:hover {
    color: #0069ff;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0069ff;
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

/* Calendly Badge */
.calendly-badge-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.calendly-badge-widget:hover {
    transform: translateY(-2px);
}

.calendly-badge-content {
    background: #0069ff;
    color: #fff;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%); */
    background-image: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%), url(/assets/images/appliance_repair.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
    background-blend-mode: multiply;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        background-image: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
/* Hero Text glass style */
.hero-text {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: #0069ff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-transform: capitalize;
}

.hero-description {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: #0069ff;
    margin: 32px 0;
}

.contact-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #0069ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: translateY(-2px);
    color: #0056cc;
}

/* Form Styles */
.hero-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #e74c3c;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field-half {
    position: relative;
}

.field-label {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
    color: #666;
    font-weight: normal;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #0069ff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.about-section .section-title {
    color: #fff;
}

.about-section .section-divider {
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.online-booking {
    margin-bottom: 16px;
}

.online-booking a {
    color: #fff;
    text-decoration: underline;
}

.technician-note {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: translateY(-4px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-item {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: #0069ff;
    margin-bottom: 16px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: capitalize;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '•';
    color: #0069ff;
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.reviews-section .section-title {
    color: #fff;
}

.reviews-section .section-divider {
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
}

.reviews-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 20px;
}

.reviews-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.reviews-slider {
    overflow: hidden;
    border-radius: 12px;
}

.review-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 32px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeInSlide 0.5s ease-in-out;
}

.review-item.active {
    display: block;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.review-customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.review-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.review-date {
    font-size: 14px;
    color: #666;
    margin: 2px 0 0 0;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8fafc;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    border: 1px solid #e1e5e9;
}

.platform-icon {
    width: 16px;
    height: 16px;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-rating .star {
    color: #ffd700;
    font-size: 16px;
}

.review-content {
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reviews-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.reviews-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.reviews-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reviews-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.review-dot.active {
    background: white;
    transform: scale(1.2);
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsiveness for reviews */
@media (max-width: 768px) {
    .review-item {
        padding: 24px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .review-customer-info {
        width: 100%;
    }
    
    .review-platform {
        align-self: flex-start;
    }
    
    .reviews-navigation {
        gap: 16px;
    }
    
    .reviews-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Reviews Platforms Section */
.reviews-platforms-section {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

/* .reviews-platforms-section .section-title {
    color: #fff;
    margin-bottom: 40px;
} */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    align-items: center;
}

.platform img {
    max-height: 80px;
    max-width: 150px;
    /* filter: brightness(0) invert(1); */
    /* opacity: 0.8; */
    transition: opacity 0.3s ease;
}

.platform:hover img {
    opacity: 1;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-section .section-subtitle {
    color: #fff;
}

.gallery-section .section-title {
    color: #fff;
}

.gallery-section .section-divider {
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
}

.work-gallery {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(229, 228, 228, 0.3);
    background-color: #f8fafc;
    height: 400px;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    transform: translateX(100%);
}

.gallery-item:first-child {
    transform: translateX(0);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 30px 40px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.gallery-caption p {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.gallery-nav-btn {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.brands-section .section-subtitle {
    margin-top: 16px;
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    gap: 40px;
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.brand-row img {
    max-height: 60px;
    max-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand-row img:hover {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section .section-divider {
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-phone .phone-link {
    font-size: 24px;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #0069ff;
}

.business-hours p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0069ff;
}

/* Studio 63 Credit */
.studio-credit {
    margin-top: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.studio-credit a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.studio-credit a:hover {
    color: #0069ff;
}

/* Scroll Animations */
.fade-in, .slide-up, .service-item, .testimonial-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate, .slide-up.animate, .service-item.animate, .testimonial-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Header scroll effect */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Error states for forms */
.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* Message notifications */
.message {
    font-size: 14px;
    max-width: 300px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved focus states */
*:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Mobile menu improvements */
.menu-open {
    overflow: hidden;
}

.mobile-menu-toggle.active .menu-icon {
    transform: rotate(90deg);
}

/* Hover effects for interactive elements */
.service-item:hover,
.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.brand-row img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
        padding: 16px 16px;
    }
    
    .mobile-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-toggle {
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
    z-index: 1100;
    position: relative;
    }
    
    .mobile-navigation {
        display: none;
        padding: 20px 0;
        border-top: 1px solid #e1e5e9;
        background:#fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        z-index: 1000;
    }
    
    .mobile-navigation.active { display:block; animation: fadeSlide .25s ease; }
    
    @keyframes fadeSlide { from { opacity:0; transform: translateY(-6px);} to { opacity:1; transform: translateY(0);} }
    
    .mobile-menu {
        list-style: none;
    }
    
    .mobile-menu li {
        margin-bottom: 16px;
    }
    /* Improved mobile menu tappable area & padding */
    .mobile-navigation .mobile-menu {
        padding: 8px 0 12px 0;
    }
    .mobile-navigation .mobile-menu li {
        margin: 0; /* spacing handled by anchor padding & separators */
    }
    .mobile-navigation .mobile-menu a {
        display: block;
        padding: 14px 24px;
        line-height: 1.3;
        font-weight: 500;
        color: #222;
        text-decoration: none;
        position: relative;
        transition: background .25s ease, color .25s ease;
    }
    .mobile-navigation .mobile-menu a:focus,
    .mobile-navigation .mobile-menu a:hover {
        background: #f2f6fa;
        color: #0066cc;
    }
    .mobile-navigation .mobile-menu a:active {
        background: #e6eef4;
    }
    /* Optional subtle separators */
    .mobile-navigation .mobile-menu li + li a {
        border-top: 1px solid #eceff2;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .reviews-section {
        padding: 60px 0;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-form {
        padding: 24px;
    }
    
    .service-item {
        padding: 24px;
    }
    
    .testimonial {
        padding: 24px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    /* .brand-row {
        grid-template-columns: 1fr;
    } */

    .hero-text {
        background: transparent;
        box-shadow: none;
    }
}

/* Print Styles */
@media print {
    .calendly-badge-widget,
    .site-header {
        display: none;
    }
    
    .hero-section {
        padding-top: 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}

/* Thumbtack Widget Styling */
.thumbtack-widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#tt-review-widget-star {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#tt-review-widget-star:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#tt-review-widget-star .tt-logo {
    max-height: 24px;
    margin-bottom: 8px;
}

#tt-review-widget-star .tt-business-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-decoration: none;
}

#tt-review-widget-star a {
    text-decoration: none;
    color: inherit;
}

#tt-review-widget-star a:hover .tt-business-name {
    color: #0066cc;
}

#tt-dynamic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
}

#tt-dynamic img {
    width: 16px;
    height: 16px;
}

#tt-dynamic .tt-review-count {
    font-size: 12px;
    color: #666;
    margin-left: 6px;
    font-weight: 500;
}

/* Adjust platforms grid for widget */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #tt-review-widget-star {
        max-width: 160px;
        padding: 12px;
    }
    
    #tt-review-widget-star .tt-logo {
        max-height: 20px;
    }
    
    #tt-review-widget-star .tt-business-name {
        font-size: 11px;
    }
    
    #tt-dynamic .tt-review-count {
        font-size: 11px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }
}

/* Service Area Section */
.service-area-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-area-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-area-description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-area-map {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-legend {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    opacity: 0.5;
}

.legend-text {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.service-area-info {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-area-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.area-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #e11d48;
    margin-bottom: 15px;
    border-bottom: 2px solid #fee2e2;
    padding-bottom: 8px;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    padding: 8px 0;
    color: #475569;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.area-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.service-note {
    display: flex;
    gap: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.note-icon {
    color: #e11d48;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.note-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.note-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.note-content a {
    color: #e11d48;
    text-decoration: none;
    font-weight: 600;
}

.note-content a:hover {
    text-decoration: underline;
}

.service-area-cta .btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .service-area-section {
        padding: 60px 0;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-area-info {
        padding: 30px 20px;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-overlay {
        position: static;
        margin-top: 15px;
        border-radius: 8px;
    }
    
    .service-note {
        flex-direction: column;
        gap: 10px;
    }
    
    .note-icon {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .service-area-header {
        margin-bottom: 40px;
    }
    
    .service-area-description {
        font-size: 16px;
    }
    
    .service-area-title {
        font-size: 24px;
    }
}
