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

/* GLOBAL */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #eaffea;
    text-align: center;

    /* WALLPAPER */
    background-image: url("images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;
}


/* HEADER */
.header {
    padding: 60px 20px;
    background: transparent;
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.logo {
    max-width: 540px; /* 2x bigger */
    height: auto;


    filter: drop-shadow(0 0 10px rgba(140, 255, 74, 0.4));
    animation: glow 3s ease-in-out infinite;
}
.review-badge {
    max-width: 210px;
    width: 100%;
    opacity: 0.95;
}


/* MAIN CONTENT */
.content {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;

    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}


.content h1 {
    color: #8cff4a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* BUTTON */
.cta {
    background-color: #8cff4a;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
}

.cta:hover {
    background-color: #6fdc32;
}

/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
}
/* FLOATING BUTTON BASE */
.float-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;

    padding: 14px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

/* CALL BUTTON */
.call-btn {
    right: 20px;
    background: #8cff4a;
    color: #000;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    left: 20px;
    background: #25d366;
    color: #000;
}

/* MEET THE TECHNICIANS */
.section-title {
    color: #8cff4a; /* same green */
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.team-box .section-title {
    margin-bottom: 35px;
}

.team-section {
    margin: 60px auto 0;
    padding: 0 20px;
}

.team-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 25px;
    border-radius: 10px;

    max-width: 360px;
    text-align: center;

    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

.team-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #eaffea;
}

.team-inner {
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.team-img {
    width: 100%;
    max-width: 350px;
    height: 350px;

    object-fit: cover;
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* OUR SERVICES */
.services-section {
    margin: 80px auto 0;
    padding: 0 20px;
}


.services-title {
    color: #8cff4a;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

/* SERVICE HOVER EFFECT */
.service-card {
    position: relative;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(140, 255, 74, 0.25);
}


.service-card h2 {
    color: #8cff4a;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;

    border-radius: 8px;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #eaffea;
}
.services-box {
    max-width: 1200px;
    margin: 0 auto;

    background: rgba(0, 0, 0, 0.75);
    padding: 50px 30px;

    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}
/* SUBTLE SERVICE DIVIDERS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
}

.service-card img {
    transition: transform 0.4s ease;
}
.service-card:hover img {
    transform: scale(1.2);
}


.service-card {
    position: relative;
}

/* Vertical divider lines */
/* GLOWING SERVICE DIVIDERS */
.service-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -25px;

    width: 2px;
    height: 80%;

    background: linear-gradient(
        to bottom,
        rgba(140, 255, 74, 0),
        rgba(140, 255, 74, 0.4),
        rgba(140, 255, 74, 0)
    );

    box-shadow: 0 0 10px rgba(140, 255, 74, 0.5);
}
/* OUR GUARANTEES */
.guarantees-section {
    margin: 80px auto 0;
    padding: 0 20px;
}

.guarantees-box {
    max-width: 900px;
    margin: 0 auto;

    background: rgba(0, 0, 0, 0.75);
    padding: 50px 30px;

    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

.guarantees-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.guarantees-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;

    font-size: 1.1rem;
    line-height: 1.6;
}

/* Green checkmarks */
/* ICONS FOR GUARANTEES */
.guarantees-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;

    width: 20px;
    height: 20px;

    background-color: #8cff4a;

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1l9 4v6c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4zm-1 15l6-6-1.41-1.41L11 13.17l-2.59-2.59L7 12l4 4z'/%3E%3C/svg%3E") center / contain no-repeat;

            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1l9 4v6c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4zm-1 15l6-6-1.41-1.41L11 13.17l-2.59-2.59L7 12l4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* CONTACT US */
.contact-section {
    margin: 80px auto 40px;
    padding: 40px 20px;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.contact-icons a img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(140, 255, 74, 0.5));
}

.contact-icons a img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(140, 255, 74, 0.9));
}
/* SLIDE-IN ANIMATION */
.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.slide-in.active {
    opacity: 1;
    transform: translateY(0);
}
.free-quote-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background-color: #8cff4a;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(140, 255, 74, 0.4);
}

.free-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(140, 255, 74, 0.7);
}
.google-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
/* QUOTE FORM STYLING */
.quote-form {
    margin-top: 30px; /* space between heading and first input */
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1.1rem;
    color: #8cff4a;
    font-weight: bold;
}

.form-group input {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 8px;
    border: none;
    outline: none;
}

.form-group input[type="file"] {
    background: #222;
    color: #eaffea;
    padding: 12px;
    cursor: pointer;
}
.quote-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;   /* top-aligned */
    padding: 160px 20px 40px;  /* pushes box down cleanly */
}
/* IMAGE PREVIEW */
.image-preview {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.image-preview img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(140, 255, 74, 0.4);
    box-shadow: 0 0 10px rgba(140, 255, 74, 0.25);
    animation: fadeIn 0.3s ease-in;
}
/* FORM VALIDATION */
input:invalid {
    border: 2px solid #ff4a4a;
    box-shadow: 0 0 10px rgba(255, 74, 74, 0.6);
    animation: shake 0.3s ease;
}

input:valid {
    border: 2px solid #8cff4a;
    box-shadow: 0 0 10px rgba(140, 255, 74, 0.4);
}
/* TOP NAVIGATION */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    gap: 20px;

    padding: 15px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);

    z-index: 999;
}

.nav-tab {
    color: #eaffea;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 22px;
    border-radius: 25px;

    transition: all 0.3s ease;
}

.nav-tab:hover {
    background: rgba(140, 255, 74, 0.15);
    box-shadow: 0 0 15px rgba(140, 255, 74, 0.4);
}

.nav-tab.active {
    background: #8cff4a;
    color: #000;
    box-shadow: 0 0 20px rgba(140, 255, 74, 0.6);
}
.quote-page .content {
    margin-top: 120px;
}
.thank-you-box {
    animation: popIn 0.6s ease;
}
/* NAV BAR */
.nav {
    position: sticky;
    top: 0;
    z-index: 9998;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);

    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    max-height: 60px;
    filter: drop-shadow(0 0 8px rgba(140, 255, 74, 0.4));
}

/* LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #eaffea;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: #8cff4a;
    text-shadow: 0 0 10px rgba(140, 255, 74, 0.6);
}

/* ACTION BUTTONS */
.nav-actions {
    display: flex;
    gap: 18px;
}

/* FREE QUOTE BUTTON (matches homepage style) */
.nav-quote-btn {
    padding: 12px 26px;
    background-color: #8cff4a;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;

    box-shadow: 0 5px 15px rgba(140, 255, 74, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(140, 255, 74, 0.8);
}

/* PHONE BUTTON */
.nav-phone-btn {
    padding: 12px 24px;
    border-radius: 8px;

    background: transparent;
    border: 2px solid #8cff4a;

    color: #8cff4a;
    font-weight: bold;
    text-decoration: none;

    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-phone-btn:hover {
    background: #8cff4a;
    color: #000;
    box-shadow: 0 0 20px rgba(140, 255, 74, 0.8);
}
.nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    max-width: 160px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #eaffea;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: #8cff4a;
    text-shadow: 0 0 10px rgba(140,255,74,0.7);
}
.nav-actions {
    display: flex;
    gap: 15px;
}

.nav-quote-btn {
    background: #8cff4a;
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(140,255,74,0.4);
}

.nav-phone-btn {
    border: 2px solid #8cff4a;
    color: #8cff4a;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #8cff4a;
    border-radius: 3px;
}
.trustpilot-phone-btn {
    padding: 12px 25px;   /* matches free-quote-btn */
    border-radius: 8px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.free-quote-btn {
    text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

.review-card h2 {
    color: #8cff4a;
    margin-bottom: 20px;
}
.nav {
    background: rgba(0,0,0,0.6); /* 0.6 = more see-through */
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3); /* lighter shadow */

}
.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 7px 25px;  /* top/bottom = 5px for a thinner nav */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    max-height: 45px; /* was 60px */
}
.nav-links a {
    font-size: 0.95rem;     /* slightly smaller for sleekness */
    letter-spacing: 0.5px;  /* more airy look */
    font-weight: 600;        /* semi-bold for readability */
    padding: 8px 15px;       /* tighter padding inside links */
}
.nav-links a:hover {
    color: #8cff4a;
    text-shadow: 0 0 5px rgba(140,255,74,0.5); /* subtle glow instead of heavy */
    transform: translateY(-1px); /* slight lift on hover */
    transition: all 0.2s ease;
}
.nav-links a.active {
    border-bottom: 2px solid #8cff4a;
    color: #8cff4a;
}
.hero {
    background: url('images/van.jpg') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #eaffea;
}

.hero .cta {
    margin-top: 20px;
}

.areas-list {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area {
    background: rgba(0,0,0,0.75);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    font-weight: bold;
    color: #8cff4a;
}

.mobile-service, .cta-section {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

.cta-section .cta {
    display: inline-block;
    padding: 15px 30px;
    background: #8cff4a;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(140,255,74,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-section .cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(140,255,74,0.7);
}
/* HERO SECTION */
.hero {
    position: relative;
    background: url('images/van.jpg') center/cover no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: #eaffea;
}
.hero::before {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.65);
}
.hero h1, .hero p, .hero .cta {
    position: relative;
    z-index: 1;
}
.hero h1 { font-size: 3rem; color: #8cff4a; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 25px; line-height: 1.6; }

/* AREAS GRID */
.areas-list h2 { color: #8cff4a; margin-bottom: 30px; font-size: 2.5rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5);}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}
.area {
    background: rgba(0,0,0,0.7);
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    font-weight: bold;
    color: #8cff4a;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
}
.area:hover {
    transform: translateY(-5px);
    background: rgba(0,0,0,0.85);
    box-shadow: 0 12px 35px rgba(140,255,74,0.4);
}

/* MOBILE SERVICE */
.mobile-service {
    max-width: 850px;
    margin: 80px auto;
    text-align: center;
    background: rgba(0,0,0,0.75);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}
.mobile-service h2 { font-size: 2.2rem; color: #8cff4a; margin-bottom: 20px; }
.mobile-service p { font-size: 1.1rem; line-height: 1.6; color: #eaffea; }

/* MAP */
#service-map { width: 100%; max-width: 1000px; height: 500px; margin: 60px auto; border-radius: 12px; box-shadow: 0 0 25px rgba(0,0,0,0.6); }

/* CTA BUTTON */
.cta-section .cta {
    display: inline-block;
    padding: 16px 32px;
    background: #8cff4a;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(140,255,74,0.4);
    transition: all 0.3s ease;
}
.cta-section .cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(140,255,74,0.7);
}
/* FAQ SECTION */
.faq-section {
    margin: 80px auto;
    padding: 40px 20px;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.faq-box .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #8cff4a;
}

.faq-item {
    margin-bottom: 25px;
    border-left: 3px solid #8cff4a;
    padding-left: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #eaffea;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #eaffea;
}

.faq-item a {
    color: #8cff4a;
    text-decoration: underline;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(140, 255, 74, 0.2);
}
.reviews-header {
    max-width: 900px;
    margin-top: 20px; /* space between consecutive paragraphs */
    margin: 60px auto 40px;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.reviews-header h1 {
    color: #8cff4a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.reviews-header p + p {
    margin-top: 20px; /* space between consecutive paragraphs */
}


/* RESPONSIVE */


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

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

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



@keyframes glow {
    0% {
        filter: drop-shadow(0 0 8px rgba(140, 255, 74, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(140, 255, 74, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(140, 255, 74, 0.3));
    }
}

@media (max-width: 900px) {
    .faq-section {
        padding: 30px 15px;
    }

    .faq-item h3 {
        font-size: 1.15rem;
    }

    .faq-item p {
        font-size: 1rem;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .mobile-service { padding: 30px 20px; }

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


    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .guarantees-box {
        padding: 40px 20px;
    }

    .guarantees-list li {
        font-size: 1rem;
    }


    /* Disable service dividers + hover on mobile */
    .service-card::after {
        display: none;
    }

    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* SERVICES */
    .services-box {
        padding: 40px 20px;
    }

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

    .service-card img {
        height: 200px;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    /* TEAM SECTION */
    .team-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-box {
        max-width: 100%;
    }

    .team-img {
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    /* HEADER */
    .header-inner {
        flex-direction: column;
        gap: 20px;
    }

    .review-badge {
        max-width: 140px;
    }

    .logo {
        max-width: 220px;
    }

    .header {
        padding: 40px 15px;
    }

    /* CONTENT */
    .content {
        margin: 20px;
        padding: 30px 20px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .cta {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }

    .float-btn {
        padding: 16px 22px;
        font-size: 1.1rem;
    }
}
