


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    width: 100%;
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: #0f0f0f;
    z-index: 1000;
}
.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:white;
}

/* MOBILE NAVBAR */

@media(max-width:768px){

   .menu-toggle{
    display:none !important;
}

    .nav-container{
    flex-direction:column;
    gap:15px;
}

.nav-links{
    display:flex !important;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    width:100%;

    gap:12px;

    padding:10px 0;

    position:relative;
    top:0;
    right:0;

    background:none;
    border:none;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    font-size:14px;
    padding:8px 10px;
}

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

     .contact-options{
        flex-direction:column;
        align-items:center;
    }

    .contact-card{
        width:100%;
    }

    .hero-container,
    .testimonial-grid {
        grid-template-columns:1fr;
    }

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

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

    .hero {
        padding:120px 0 80px;
    }

    .hero h1 {
        font-size:3.2rem;
    }

    .hero-right {
        height:450px;
    }

    .nav-links {
        display:none;
    }

    .portfolio-real-image{
        height:220px;
    }

       .service-image {
        height: 160px;
    }

}

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

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

.logo-img {
    width: 100px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00ffae;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    color: #00ffae;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    color: #c7c7c7;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn,
.secondary-btn {
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #00ffae;
    color: black;
}

.primary-btn:hover {
    transform: translateY(-4px);
}

.secondary-btn {
    border: 1px solid #444;
    color: white;
}

.secondary-btn:hover {
    background: #1f1f1f;
}

.hero-right{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
    align-items:center;
    height:auto;
    margin-top:40px;
}

.floating-card{
    position:relative;
    background:#181818;
    border:1px solid #2a2a2a;
    padding:25px;
    border-radius:20px;
    width:220px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.card-one,
.card-two,
.card-three,
.card-four{
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
}


/* SECTION TITLE */

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

.section-title p {
    color: #00ffae;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 3rem;
}

/* SERVICES */

.services {
    padding: 120px 0;
}

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

.service-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    padding: 40px;
    border-radius: 24px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

/* PORTFOLIO */

/* PORTFOLIO */

.portfolio {
    padding: 120px 0;
}

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

.portfolio-card{
    background:#181818;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #2a2a2a;
    transition:0.4s ease;
    cursor:pointer;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.portfolio-real-image{
    width:100%;
    height:220px;
    object-fit:contain;
    display:block;
    background:#111;
    padding:10px;
}

.portfolio-content{
    padding:20px;
}

.portfolio-content h3{
    font-size:1.2rem;
    margin-bottom:8px;
    color:white;
}

.portfolio-content p{
    color:#a0a0a0;
    font-size:0.9rem;
}
/* TESTIMONIALS */

.testimonials {
    padding: 120px 0;
}

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

.testimonial-card {
    background: #181818;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #2a2a2a;
}

.testimonial-card p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* CTA */

.cta {
    padding: 120px 0;
}

.cta-container {
    text-align: center;
    background: linear-gradient(135deg, #00ffae, #00bfff);
    padding: 80px 40px;
    border-radius: 30px;
}

.cta-container h2 {
    font-size: 3rem;
    color: black;
    margin-bottom: 20px;
}

.cta-container p {
    color: #111;
    margin-bottom: 35px;
}

/* FOOTER */

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer p {
    color: #888;
    margin-top: 10px;
}

@media(max-width:480px){

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

    .hero-description{
        font-size:0.95rem;
    }

    .floating-card{
        padding:15px;
    }

    .floating-card h3{
        font-size:1.5rem;
    }

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

    .contact-card{
        width:100%;
    }

    .cta-container{
        padding:50px 20px;
    }
     .companies-grid {
        grid-template-columns: 1fr;
    }

    .company-card {
        padding: 18px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-container,
    .services-grid,
    .portfolio-grid,
    .testimonial-grid{
        grid-template-columns:1fr;
    }

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

    .section-title h2{
        font-size:2rem;
    }

    .floating-card{
        width:180px;
        padding:20px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    .cta-container h2{
        font-size:2rem;
    }

    .portfolio-real-image{
        height:200px;
    }

    .portfolio-content{
        padding:18px;
    }

    .portfolio-content h3{
        font-size:1.1rem;
    }

   .hero-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:40px;
}

.floating-card{
    width:100%;
    min-height:120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

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

    .company-card {
        padding: 20px;
    }

    .company-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .company-card h3 {
        font-size: 15px;
    }

      .portfolio-detail-section{
        padding:80px 15px;
    }

    .portfolio-detail-card img{
        height:220px;
        padding:15px;
    }

    .portfolio-detail-content{
        padding:25px 20px;
        text-align:center;
    }

    .portfolio-detail-content h1{
        font-size:1.7rem;
    }

    .portfolio-description{
        font-size:0.95rem;
        line-height:1.8;
    }
}

.portfolio-link{
    text-decoration:none;
}

/* PORTFOLIO DETAIL */

.portfolio-detail-section{
    padding:100px 20px;
    background:#0f0f0f;
    min-height:100vh;
}

.portfolio-detail-card{
    max-width:800px;
    margin:auto;
    background:#161616;
    border:1px solid #2a2a2a;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.45);
}

/* IMAGE */

.portfolio-detail-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#0d0d0d;
    padding:25px;
    display:block;
}

/* CONTENT */

.portfolio-detail-content{
    padding:35px 30px;
    text-align:left;
}

.portfolio-category{
    color:#00ffae;
    font-size:0.85rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:12px;
    text-transform:uppercase;
}

.portfolio-detail-content h1{
    font-size:2.2rem;
    line-height:1.3;
    margin-bottom:18px;
    color:white;
}

.portfolio-description{
    color:#bdbdbd;
    font-size:1rem;
    line-height:1.9;
}

/* CONTACT SECTION */

.contact-section{
    padding:120px 0;
}

.submit-btn{

    background:#00ffae;

    color:black;

    border:none;

    padding:16px;

    border-radius:12px;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}


.submit-btn:hover{
    transform:translateY(-3px);
}

.contact-options{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.contact-card{
    background:#181818;
    border:1px solid #2a2a2a;
    padding:30px;
    width:280px;
    border-radius:24px;
    text-align:center;
    text-decoration:none;
    color:white;
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#00ffae;
}

.contact-card h3{
    margin-bottom:10px;
    font-size:1.4rem;
}

.contact-card p{
    color:#bdbdbd;
}

.contact-form-container{
    max-width:750px;
    margin:auto;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border-radius:14px;
    border:1px solid #2a2a2a;
    background:#181818;
    color:white;
    font-size:1rem;
    outline:none;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    border:none;
    cursor:pointer;
}



/* trusted_companies */

.trusted-companies {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.company-card {
    background: #151515;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.company-card:hover {
    transform: translateY(-8px);
}

.company-card img {
    width: 100%;
    max-width: 120px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.company-card h3 {
    color: white;
    font-size: 18px;
}

.portfolio-detail-media{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#0d0d0d;
    display:block;
    border-bottom:1px solid #2a2a2a;
}

video.portfolio-real-image{
    width:100%;
    height:220px;
    object-fit:cover;
    background:black;
}

/* ================= SOCIAL SECTION ================= */

.social-section{

    padding:90px 20px;

    background:#0f0f0f;

    text-align:center;

}

.social-section h2{

    color:white;

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.social-section p{

    color:#CBD5E1;

    max-width:700px;

    margin:auto;

    margin-bottom:45px;

    line-height:1.7;

}

.social-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));

    gap:22px;

}

.social-card{

    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:18px;
    padding:28px 20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:12px;

    text-decoration:none;
    color:white;

    transition:0.35s ease;
}

.social-card:hover{

    background:#1b1b1b;

    border-color:#00ffae;

    transform:translateY(-8px);

    box-shadow:0 0 12px rgba(0,255,174,.18);

}

.social-card img{

    width:28px;
    height:28px;
    object-fit:contain;
    margin-bottom:15px;
    transition:0.3s ease;

}

.social-card:hover img{

    transform:scale(1.15);

}

.social-card span{

    font-size:16px;
    font-weight:600;

}

.social-card:hover i{

    transform:scale(1.12);

    color:#00ffae !important;

}

.social-card{
    text-decoration: none !important;
    color: white !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card i{
    font-size: 42px !important;
    color: white !important;
    margin-bottom: 12px;
    transition: .3s;
}

.social-card span{
    color: white !important;
    font-weight: 600;
}


/* TRUSTED COMPANIES */

.trusted-companies{
    padding:100px 0;
    overflow:hidden;
    background:#0f0f0f;
}

.companies-slider{
    overflow:hidden;
    width:100%;
}

.companies-track{
    display:flex;
    align-items:stretch;
    gap:30px;
    width:max-content;

    animation:scrollLogos 20s linear infinite;
}

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

.company-card{
    flex:0 0 calc((1200px - 90px)/4);

    max-width:260px;
    min-width:260px;

    background:#151515;
    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.35s;
}

.company-card:hover{
    transform:translateY(-8px);
}

.company-card img{
    width:100%;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
}

.company-card h3{
    color:white;
    font-size:20px;
}

@keyframes scrollLogos{

from{
transform:translateX(0);
}

to{
transform:translateX(-50%);
}

}

video.portfolio-real-image{
    width:100%;
    height:220px;
    object-fit:cover;
    background:black;
}

/* SERVICE IMAGES */

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    margin-bottom: 25px;
    background: #111;
}






/* =========================================================
   PREMIUM SERVICE CARDS
   ========================================================= */

.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.service-link:visited,
.service-link:hover,
.service-link:active {
    color: inherit;
    text-decoration: none;
}

.service-link:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}


/* IMAGE */

.service-card-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #1a1a1a;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-link:hover .service-card-image img {
    transform: scale(1.05);
}


/* NUMBER */

.service-number {
    position: absolute;
    top: 16px;
    left: 16px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


/* CONTENT */

.service-card-content {
    padding: 25px;
}

.service-category {
    display: inline-block;

    margin-bottom: 10px;

    color: #bcbcbc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-card-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.25;
}

.service-card-content p {
    margin: 0;

    color: #b7b7b7;

    font-size: 14px;
    line-height: 1.7;
}


/* BOTTOM */

.service-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.service-card-bottom strong {
    color: #ffffff;
    font-size: 15px;
}

.service-card-bottom span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}


/* MOBILE */

@media (max-width: 768px) {

    .service-card-image {
        height: 190px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-content h3 {
        font-size: 19px;
    }

}


/* =========================================================
   SERVICE DETAIL PAGE — DARK GROWYOURBIZ DESIGN
   ========================================================= */

.service-detail {
    padding: 100px 0 120px;
    background: #0f0f0f;
    color: #ffffff;
    min-height: 100vh;
}


/* =========================================================
   HERO
   ========================================================= */

.service-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}


/* IMAGE */

.service-detail-image {
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-radius: 24px;
    background: #111111;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* INTRO */

.service-detail-intro {
    padding: 20px 0;
}

.service-detail-category {
    display: inline-block;
    margin-bottom: 18px;

    color: #00ffae;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-detail-intro h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.service-detail-short {
    max-width: 600px;

    margin: 0 0 30px;

    color: #bdbdbd;

    font-size: 17px;
    line-height: 1.8;
}

.service-detail-price {
    display: inline-block;

    padding: 13px 22px;

    border-radius: 100px;

    background: #181818;
    border: 1px solid #2a2a2a;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   DETAIL SECTIONS
   ========================================================= */

.service-detail-section {
    margin-bottom: 80px;
}


/* SECTION HEADING */

.service-detail-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 30px;
    padding-bottom: 18px;

    border-bottom: 1px solid #2a2a2a;
}

.service-detail-heading span {
    color: #00ffae;

    font-size: 12px;
    font-weight: 800;
}

.service-detail-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 28px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.service-description {
    max-width: 900px;

    color: #bdbdbd;

    font-size: 16px;
    line-height: 1.9;
}

.service-description p {
    margin-bottom: 18px;
}


/* =========================================================
   INCLUDED
   ========================================================= */

.service-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px 20px;

    background: #181818;

    border: 1px solid #2a2a2a;
    border-radius: 16px;

    color: #d0d0d0;

    font-size: 14px;
    line-height: 1.6;

    transition: 0.3s ease;
}

.included-item:hover {
    transform: translateY(-4px);

    border-color: #00ffae;

    background: #1b1b1b;
}

.included-check {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #00ffae;
    color: #000000;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   NOT INCLUDED
   ========================================================= */

.service-excluded-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.excluded-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px 20px;

    background: #151515;

    border: 1px solid #2a2a2a;
    border-radius: 16px;

    color: #9d9d9d;

    font-size: 14px;
    line-height: 1.6;
}

.excluded-cross {
    flex-shrink: 0;

    color: #777777;

    font-size: 22px;
    line-height: 20px;
}


/* =========================================================
   IMPORTANT NOTE
   ========================================================= */

.service-note {
    margin: 60px 0;

    padding: 28px 30px;

    background: #181818;

    border: 1px solid #2a2a2a;
    border-left: 4px solid #00ffae;

    border-radius: 0 16px 16px 0;
}

.service-note-title {
    margin-bottom: 10px;

    color: #00ffae;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.service-note p {
    margin: 0;

    color: #bdbdbd;

    line-height: 1.7;
}


/* =========================================================
   WHATSAPP CTA
   ========================================================= */

.service-whatsapp-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 50px;

    background: #181818;

    border: 1px solid #2a2a2a;
    border-radius: 26px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.service-whatsapp-label {
    display: block;

    margin-bottom: 12px;

    color: #00ffae;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.service-whatsapp-box h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;
}

.service-whatsapp-box p {
    margin: 0;

    max-width: 550px;

    color: #a8a8a8;

    line-height: 1.7;
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.service-whatsapp-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 17px 27px;

    background: #00ffae;
    color: #000000 !important;

    border-radius: 12px;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 800;

    transition: 0.3s ease;

    box-shadow: 0 10px 30px rgba(0,255,174,0.12);
}

.service-whatsapp-button:hover {
    background: #ffffff;

    color: #000000 !important;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(255,255,255,0.12);
}

.service-whatsapp-button:visited {
    color: #000000 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .service-detail {
        padding: 70px 0 80px;
    }

    .service-detail-hero {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 70px;
    }

    .service-detail-image {
        height: 300px;
    }

    .service-detail-intro h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .service-detail-short {
        font-size: 15px;
    }

    .service-included-grid,
    .service-excluded-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-heading h2 {
        font-size: 23px;
    }

    .service-whatsapp-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

    .service-whatsapp-box h2 {
        font-size: 27px;
    }

    .service-whatsapp-button {
        width: 100%;
    }
}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .service-detail-image {
        height: 240px;
    }

    .service-detail-intro h1 {
        font-size: 34px;
    }

    .service-detail-heading {
        gap: 12px;
    }

    .service-detail-heading h2 {
        font-size: 20px;
    }

    .service-whatsapp-box {
        padding: 25px 20px;
    }

}




/* =========================================================
   HOMEPAGE FAQ
========================================================= */

.home-faq {
    padding: 110px 0;
    background: #0d0d0d;
}

.home-faq .section-title {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.home-faq .section-title p {
    color: #00f5b8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.home-faq .section-title h2 {
    color: #ffffff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.faq-intro {
    display: block;
    max-width: 650px;
    margin: 0 auto;
    color: #9d9d9d;
    font-size: 16px;
    line-height: 1.7;
}


/* FAQ LIST */

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


/* FAQ ITEM */

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* QUESTION */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 27px 5px;

    background: transparent;
    border: none;
    outline: none;

    color: #ffffff;

    font-family: inherit;
    font-size: 18px;
    font-weight: 600;

    text-align: left;
    cursor: pointer;

    transition: color 0.3s ease;
}


/* QUESTION HOVER */

.faq-question:hover {
    color: #00f5b8;
}


/* PLUS ICON */

.faq-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: #00f5b8;

    font-size: 23px;
    font-weight: 300;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.45s ease,
        opacity 0.35s ease;
}

.faq-answer p {
    max-width: 820px;

    padding: 0 55px 27px 5px;

    margin: 0;

    color: #a9a9a9;

    font-size: 16px;
    line-height: 1.8;
}


/* ACTIVE FAQ */

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

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

    background: #00f5b8;
    color: #0d0d0d;

    border-color: #00f5b8;
}


/* MOBILE */

@media (max-width: 768px) {

    .home-faq {
        padding: 80px 0;
    }

    .home-faq .section-title {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 22px 0;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 35px 22px 0;
        font-size: 15px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

}

.google-review-summary{
    margin-top:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.google-stars{
    font-size:24px;
}

.google-review-text{
    color:#bdbdbd;
    font-size:16px;
}

.google-review-cta{
    margin-top:60px;
    text-align:center;
}

.google-review-cta h3{
    color:#fff;
    margin-bottom:15px;
}

.google-review-cta p{
    color:#bdbdbd;
    max-width:650px;
    margin:0 auto 30px;
    line-height:1.7;
}

.google-review-button{
    display:inline-block;
    background:#ffffff;
    color:#111;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.google-review-button:hover{
    transform:translateY(-3px);
    background:#f5f5f5;
}