/* ==========================================
   CSS Variables - Brand Colors & Settings
   ========================================== */
:root {
    --primary-color: #DC1F26;
    --primary-dark: #B01118;
    --primary-light: #E74950;
    --bg-color: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-medium: #F3F4F6;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --gray-light: #F9FAFB;
    --gray-medium: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-out;
    --transition-fast: all 0.15s ease-out;
    --border-radius: 12px;
    --max-width: 1400px;
    --section-padding: 120px;
    --card-padding: 60px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-color);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================
   Utility Classes
   ========================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.0625rem;
    text-decoration: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 20px 50px;
    font-size: 1.125rem;
}

/* ==========================================
   Header / Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-badge {
    height: 50px;
    width: auto;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.phone-link {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-cta {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #FAFAFA 0%, var(--bg-color) 100%);
    padding: 120px 20px 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-image {
    max-width: 576px;
    width: 100%;
    height: auto;
    animation: fadeIn 0.8s ease-out;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

.hero-tagline {
    font-size: 1.125rem;
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-address {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-phone {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.hero-phone:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-medium);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.service-item.animate {
    animation: fadeInUp 0.5s ease-out forwards;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-bullet {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -2px;
}

.service-content {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-content strong {
    font-weight: 700;
    color: var(--text-dark);
}

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

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-badge-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.about-content .section-title {
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-color);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-rating {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.0625rem;
}

.review-source {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9375rem;
}

/* Google Rating Badge */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px auto;
    padding: 20px 35px;
    background: var(--bg-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: fit-content;
}

.google-stars-wrapper {
    font-size: 0;
    line-height: 0;
}

.google-stars,
.google-stars-half {
    color: #FBB825;
    font-size: 2rem;
    letter-spacing: -2px;
    line-height: 1;
}

.google-stars-half {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #FBB825 50%, #E5E7EB 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 10px;
    line-height: 1;
}

.google-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.google-review-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.google-reviews-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: underline;
    transition: var(--transition);
}

.google-reviews-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ==========================================
   Location Section
   ========================================== */
.location {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-detail h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.location-detail p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.location-detail a:not(.btn) {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.location-detail a:not(.btn):hover {
    color: var(--primary-dark);
}

.location-detail .btn {
    display: inline-block;
    margin-top: 10px;
}

/* ==========================================
   Scheduler Section
   ========================================== */
.scheduler {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.scheduler-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.scheduler-cta .btn {
    margin-bottom: 30px;
    border-radius: 60px;
}

.scheduler-alternative {
    text-align: center;
    margin-top: 20px;
    font-size: 1.25rem;
    color: var(--text-light);
}

.phone-link-alt {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
}

.phone-link-alt:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 80px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-badge {
    height: 80px;
    width: auto;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.footer-text a {
    color: var(--primary-light);
    transition: var(--transition);
}

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

.footer-phone {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-light);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
}

/* ==========================================
   Sticky Mobile CTA
   ========================================== */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
}

.sticky-cta-mobile.visible {
    transform: translateY(0);
}

.sticky-cta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sticky-business-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.sticky-cta-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sticky-stars-wrapper {
    font-size: 0;
    line-height: 0;
}

.sticky-stars,
.sticky-stars-half {
    color: #FBB825;
    font-size: 1rem;
    letter-spacing: -1px;
    line-height: 1;
}

.sticky-stars-half {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #FBB825 50%, #E5E7EB 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: -1px;
}

.sticky-rating-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sticky-cta-btn {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    white-space: nowrap;
    min-height: 54px;
}

.sticky-cta-phone {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.sticky-cta-phone:hover {
    color: var(--primary-dark);
}

/* ==========================================
   Responsive Design - Tablet
   ========================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .hero-cta {
        justify-content: center;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   Responsive Design - Mobile
   ========================================== */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .sticky-cta-mobile {
        display: block;
    }

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

    .logo-badge {
        height: 40px;
    }

    .logo-img {
        height: 35px;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
    }

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

    .nav-link {
        font-size: 1.125rem;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-medium);
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services,
    .about,
    .reviews,
    .location,
    .scheduler {
        padding: 60px 20px;
    }

    .hero-badge {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .badge-image {
        max-width: 350px;
    }

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

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

    .hero-tagline {
        font-size: 1.125rem;
    }

    .hero-address {
        font-size: 1.0625rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-phone {
        font-size: 1.25rem;
        text-align: center;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

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

    .service-card {
        padding: 50px 30px;
    }

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

    .about-wrapper {
        gap: 40px;
    }

    .about-badge-img {
        max-width: 350px;
    }

    .about-content .section-title {
        font-size: 2.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scheduler-cta {
        padding: 0 20px;
    }

    .google-rating {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 10px;
    }

    .google-stars,
    .google-stars-half {
        font-size: 1.5rem;
    }

    .google-score {
        font-size: 2rem;
    }

    .footer-badge {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .badge-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .review-card {
        padding: 30px 20px;
    }
}
