:root {
    --color-bg-light: #E0F1F5;
    --color-bg-white: #ffffff;
    --color-bg-card: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-primary: #1399AB;
    --color-primary-dark: #0e7a8a;
    --color-primary-light: #4CC9F0;
    --color-text-dark: #1C2B4B;
    --color-text-body: #444444;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-border: #e0e0e0;
    --color-border-light: rgba(0, 0, 0, 0.05);
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --shadow-sm: 0 2px 4px rgba(28, 43, 75, 0.05);
    --shadow-md: 0 4px 6px rgba(28, 43, 75, 0.1);
    --shadow-lg: 0 10px 15px rgba(28, 43, 75, 0.1);
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.15);
    --color-footer-bg: #1C2B4B;
    --color-footer-text: #ffffff
}

body.dark-mode {
    --color-bg-light: #0f172a;
    --color-bg-white: #1e293b;
    --color-bg-card: #1e293b;
    --color-bg-secondary: #334155;
    --color-primary: #22d3ee;
    --color-primary-dark: #06b6d4;
    --color-primary-light: #67e8f9;
    --color-text-dark: #f8fafc;
    --color-text-body: #cbd5e1;
    --color-text-light: #94a3b8;
    --color-text-muted: #64748b;
    --color-border: #334155;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-white: #1e293b;
    --color-gray-light: #0f172a;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);
    --color-footer-bg: #020617;
    --color-footer-text: #f8fafc
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md)
}

.section {
    padding: var(--spacing-xl) 0
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: var(--spacing-sm) auto 0;
    border-radius: var(--radius-full)
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-heading)
}

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

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

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent
}

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

.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo img {
    height: 54px;
    width: auto
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease
}

.theme-toggle:hover {
    color: var(--color-primary)
}

.hero {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(19, 153, 171, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.1
}

.hero-title span {
    color: var(--color-primary)
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-body);
    max-width: 500px
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md)
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-circle {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--color-primary), #4CC9F0);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: morph 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-circle::after {
    content: 'JP';
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading)
}

@keyframes float {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%
    }
}

.services {
    background-color: var(--color-white)
}

.services-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: var(--spacing-lg) 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.services-track {
    display: flex;
    gap: var(--spacing-lg);
    width: max-content;
    animation: scroll 40s linear infinite;
}

.services-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--spacing-lg) / 2)));
    }
}

.service-card-link {
    flex: 0 0 280px;
    text-decoration: none;
    color: inherit;
    height: auto;
}

.service-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid var(--color-bg-light)
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: var(--color-bg-light);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary)
}

.mini-calculator {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-card), 0 0 0 1px var(--color-border-light) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden
}

.mini-calculator:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.8) inset
}

.mini-calculator h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px
}

.mini-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.mini-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.mini-input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.mini-input-group input {
    width: 100%;
    padding: 12px 5px;
    border: 2px solid transparent;
    background: var(--color-bg-secondary);
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05)
}

.mini-input-group input:focus {
    border-color: var(--color-primary);
    background: var(--color-bg-white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.15)
}

.mini-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border-light)
}

.mini-result span {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 600
}

.mini-total {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}

.mini-note {
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
    font-style: italic
}

.mini-calculator .btn-block {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    padding: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%
}

.mini-calculator .btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3)
}

@media (max-width:768px) {
    .hero-visual {
        margin-top: 2.5rem;
        display: flex;
        justify-content: center;
        padding: 0 1rem
    }

    .mini-calculator {
        max-width: 100%
    }
}

.about {
    background-color: var(--color-bg-light)
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.feature-list {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap
}

.feature-list li {
    font-weight: 600;
    font-size: 1.1rem
}

.process {
    background-color: var(--color-white)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    text-align: center
}

.process-step {
    position: relative;
    padding: var(--spacing-lg)
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md)
}

.testimonials {
    background-color: var(--color-bg-light)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg)
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm)
}

.stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm)
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-body);
    flex-grow: 1
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
    border-top: 1px solid #eee;
    padding-top: var(--spacing-sm)
}

.testimonial-card h3 {
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 1rem;
    margin: 0
}

.google-badge {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px
}

.google-badge::before {
    content: 'G';
    font-weight: bold;
    color: #4285F4;
    font-family: sans-serif;
    font-size: 1rem
}

.faq {
    background-color: var(--color-white)
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md)
}

.faq-item {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease
}

.faq-item:hover {
    box-shadow: var(--shadow-sm)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    transition: color 0.3s ease
}

.faq-question:hover {
    color: var(--color-primary)
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--color-primary)
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--color-white)
}

.faq-answer p {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--color-text-body);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05)
}

.faq-item.active .faq-answer {
    max-height: 200px
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.contact-info-panel {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg-secondary);
    gap: var(--spacing-lg)
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease
}

.info-item:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm)
}

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

.info-content h3 {
    color: var(--color-text-dark);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600
}

.info-content p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.4
}

.info-content a {
    color: var(--color-primary);
    font-weight: 500
}

.cta-box {
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary), #4CC9F0);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    border: none
}

.cta-box p {
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    font-size: 1.1rem
}

.cta-box .btn {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    width: 100%;
    border: none
}

.cta-box .btn:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.map-wrapper {
    min-height: 400px;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white)
}

.map-wrapper iframe {
    border: 0
}

@media (max-width:768px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.5rem
    }

    .header {
        display: block
    }

    .section {
        padding: 3rem 0
    }

    .hero {
        padding: 6rem 0 3rem
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg)
    }

    .hero-buttons {
        justify-content: center
    }

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

    .hero-visual {
        height: 300px
    }

    .hero-circle {
        width: 280px;
        height: 280px
    }

    .nav-toggle {
        display: block
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        border-top: 1px solid var(--color-border-light);
    }

    .nav-list.active {
        display: flex !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .contact-layout {
        grid-template-columns: 1fr
    }

    .map-wrapper {
        height: 300px;
        min-height: 300px
    }

    .contact-info-panel {
        padding: var(--spacing-lg)
    }
}

.promo-banner {
    background-color: #FFD700;
    color: #333;
    text-align: center;
    padding: 0.5rem;
    position: relative;
    font-size: 0.9rem;
    z-index: 2000
}

.promo-banner a {
    text-decoration: underline;
    font-weight: bold;
    color: #000
}

.promo-banner button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px
}

.comparison-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.img-comp-container {
    position: relative;
    height: 400px;
    overflow: hidden
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.img-comp-before {
    width: 50%;
    z-index: 2;
    border-right: 3px solid white
}

.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    top: 0;
    left: 0;
    margin: 0;
    cursor: ew-resize
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0
}

.slider::-moz-range-thumb {
    width: 0;
    height: 0;
    border: 0
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1)
}

.whatsapp-float svg {
    width: 40px;
    height: 40px
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.business-hours-widget {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden
}

.business-hours-widget h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--color-border)
}

.hours-item:last-child {
    border-bottom: none
}

.hours-item .day {
    font-weight: 600;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.hours-item .time {
    color: #0d3d47;
    font-weight: 500;
    background: var(--color-bg-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.9rem
}

.status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease
}

.status-badge.open {
    background: rgba(40, 167, 69, 0.1);
    color: #1e7e34;
    border: 1px solid rgba(40, 167, 69, 0.2)
}

.status-badge.closed {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2)
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.5;
    animation: ripple 1.5s infinite
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

.floating-hours-badge {
    position: fixed;
    top: 110px;
    right: 15px;
    z-index: 1001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none
}

.floating-hours-badge.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all
}

.floating-hours-badge.hide {
    opacity: 0;
    transform: translateX(400px);
    pointer-events: none
}

.floating-badge-content {
    background: var(--color-bg-card);
    padding: 0.65rem 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease
}

.floating-hours-badge.open .floating-badge-content {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(30, 130, 55, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.3)
}

.floating-hours-badge.closed .floating-badge-content {
    background: linear-gradient(135deg, rgba(189, 33, 48, 0.98) 0%, rgba(160, 28, 40, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.3)
}

.floating-badge-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2)
}

.floating-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
    flex-shrink: 0
}

.floating-hours-badge.open .floating-status-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    opacity: 0.7;
    animation: ripple 1.5s infinite
}

.floating-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem
}

.floating-status-text {
    font-weight: 700;
    font-size: 0.8rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2
}

.floating-closing-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.2
}

.floating-badge-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0
}

.floating-badge-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg)
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@media (max-width:768px) {
    .floating-hours-badge {
        top: 100px;
        right: 50%;
        left: auto;
        transform: translateX(calc(400px + 50%))
    }

    .floating-hours-badge.show {
        transform: translateX(50%)
    }

    .floating-hours-badge.hide {
        transform: translateX(calc(400px + 50%))
    }

    .floating-badge-content {
        padding: 0.6rem 0.9rem;
        border-radius: 30px;
        gap: 0.5rem
    }

    .floating-status-dot {
        width: 7px;
        height: 7px
    }

    .floating-status-text {
        font-size: 0.75rem
    }

    .floating-closing-time {
        font-size: 0.6rem
    }

    .floating-badge-close {
        width: 18px;
        height: 18px;
        font-size: 0.9rem
    }
}

.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: var(--spacing-xl) 0 var(--spacing-lg)
}

.footer-container {
    display: block
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl)
}

.footer-column h3 {
    color: var(--color-footer-text);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm)
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary)
}

.footer-column p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.6
}

.footer-links li {
    margin-bottom: 0.5rem
}

.footer-links a {
    color: #e0e0e0;
    font-size: 0.9rem;
    transition: color 0.3s ease
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.9rem;
    color: #b0b0b0
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md)
}

.social-links a {
    color: var(--color-footer-text);
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease
}

.social-links a:hover {
    opacity: 1
}

.coverage-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center
}

.coverage-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    border: 4px solid var(--color-white);
    position: relative
}

.map-directions-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-dark);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(19, 153, 171, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    min-height: 48px
}

.map-directions-btn:hover {
    background: var(--color-primary-dark);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 153, 171, 0.5)
}

.coverage-map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.coverage-list {
    background: var(--color-bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light)
}

.coverage-list h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-size: 1.8rem
}

.coverage-list p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-body)
}

.coverage-districts {
    margin-bottom: var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.coverage-districts li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dark);
    font-weight: 500
}

.coverage-districts li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%
}

@media (max-width:768px) {
    .coverage-container {
        grid-template-columns: 1fr
    }

    .coverage-map {
        height: 300px
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important
}

.trust-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.trust-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.trust-title {
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem
}

.trust-desc {
    font-size: 0.9rem;
    color: #555555
}

.chatbot-widget {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 320px;
    background: var(--color-bg-card);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    animation: slideInUp 0.3s ease
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

.chatbot-header {
    background: var(--color-primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1
}

.chatbot-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 15px
}

.chat-message {
    max-width: 85%;
    animation: fadeIn 0.3s ease
}

.chat-message.bot {
    align-self: flex-start
}

.chat-message.user {
    align-self: flex-end
}

.chat-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 15px 15px 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    line-height: 1.4
}

.chat-message.user .chat-bubble {
    background: var(--color-primary);
    color: white;
    border-radius: 15px 15px 0 15px
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px
}

.chat-option-btn {
    background: white;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-align: left;
    font-weight: 500
}

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

.chatbot-toggle {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: white;
    color: var(--color-primary);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s
}

.chatbot-toggle:hover {
    transform: scale(1.1)
}

.chatbot-toggle .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff4757;
    color: white;
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white
}

/* Dark Mode Chatbot Fixes */
body.dark-mode .chat-bubble {
    background: var(--color-bg-secondary);
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
}

body.dark-mode .chat-message.user .chat-bubble {
    background: var(--color-primary);
    color: var(--color-bg-card);
    border: none;
}

body.dark-mode .chat-option-btn {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

body.dark-mode .chat-option-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-card);
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(19, 153, 171, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.page-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-body);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: var(--spacing-xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.price-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(19, 153, 171, 0.2);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin: var(--spacing-sm) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

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