:root {
    --primary-blue: #1A2B4C;
    --primary-cyan: #00E5FF;
    /* Bright cyan from image */
    --cyan-hover: #00cce6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f3f4f6;
    --hero-overlay: rgba(18, 29, 51, 0.85);
    /* Dark blue overlay */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.ml-2 {
    margin-left: 1rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.badge-pill,
.badge-pill-dark {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pill {
    background: var(--primary-cyan);
    color: var(--primary-blue);
}

.badge-pill-dark {
    background: var(--primary-blue);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

.btn-cyan {
    background-color: var(--primary-cyan);
    color: var(--primary-blue);
}

.btn-cyan:hover {
    background-color: var(--cyan-hover);
}

.btn-dark {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #2a4175;
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-primary-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-primary-outline:hover {
    background: var(--primary-cyan);
    color: var(--primary-blue);
    border-color: var(--primary-cyan);
}


/* Navbar */
.navbar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary-cyan);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trusted-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.trusted-badge i {
    color: #FFA500;
}

/* Hero */
.hero {
    position: relative;
    background: url('assets/hero.png') no-repeat center center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.hero-features li i {
    margin-right: 10px;
    color: var(--primary-cyan);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
}



/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-tag {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.circle-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-cyan);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.badge-number {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary-blue);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stars {
    color: #FFA500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.author {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Services */
.services-section {
    background: var(--bg-light);
}

.services-section .section-title {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img-holder {
    height: 200px;
    overflow: hidden;
}

.service-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img-holder img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Local Info */
.local-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.local-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.local-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.main-local-img img,
.sub-local-images img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.main-local-img img {
    height: 300px;
}

.sub-local-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sub-local-images img {
    height: 150px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* FAQ */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-btns {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }


    .hero-cta-group {
        justify-content: center;
    }

    .hero-features li {
        justify-content: center;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .local-container {
        grid-template-columns: 1fr;
    }

    .circle-image-container {
        width: 300px;
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-right {
        display: none;
    }

    /* Hide phone info on strict mobile, rely on CTA or hamburger in full version */
    .desktop-only {
        display: none;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 1.5rem;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-cyan);
    color: var(--primary-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
    z-index: 2000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 3px solid var(--white);
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

@media(max-width: 768px) {
    .sticky-call-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        justify-content: center;
        padding: 18px;
    }

    .sticky-call-btn:hover {
        transform: translateX(50%) translateY(-5px);
    }
}