/* =====================================================
   UNIQ SERVICING
   MAIN STYLESHEET
===================================================== */

:root {
    --primary: #096663;
    --primary-dark: #064b49;
    --primary-light: #e8f7f5;

    --accent: #ffb703;
    --dark: #102a2a;
    --text: #526565;
    --white: #ffffff;
    --light: #f5f9f9;
    --border: #e1eceb;

    --shadow: 0 20px 50px rgba(9, 102, 99, 0.10);

    --container: 1180px;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section-padding {
    padding: 100px 0;
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.logo strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1;
}

.logo small {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 3px;
    font-weight: 700;
}

.header.scrolled .logo {
    color: var(--dark);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar > a:not(.nav-call) {
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.header.scrolled .navbar > a:not(.nav-call) {
    color: var(--dark);
}

.navbar > a:hover {
    color: var(--accent) !important;
}

.nav-call {
    padding: 11px 20px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    display: block;
    background: white;
    margin: 6px;
}

.header.scrolled .menu-toggle span {
    background: var(--dark);
}


/* ================= HERO ================= */

.hero {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 48, 47, 0.96) 0%,
            rgba(3, 48, 47, 0.82) 48%,
            rgba(3, 48, 47, 0.28) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
    padding-top: 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;

    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #42e8a1;
    box-shadow: 0 0 0 5px rgba(66,232,161,0.12);
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    max-width: 650px;
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 25px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;

    transition: 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,183,3,0.25);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

.hero-trust {
    margin-top: 55px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-item strong {
    display: block;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 23px;
}

.trust-item span {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
}

.trust-line {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.2);
}


/* ================= INTRO ================= */

.service-intro {
    padding: 70px 0;
    background: var(--light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-intro h2,
.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.service-intro h2 span,
.about-content h2 span,
.contact-content h2 span {
    color: var(--primary);
}

.intro-grid > p {
    color: var(--text);
    font-size: 16px;
}


/* ================= SECTION HEADING ================= */

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading p {
    color: var(--text);
    margin-top: 14px;
}


/* ================= SERVICES ================= */

.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    height: 270px;
    overflow: hidden;
}

.service-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 28px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    border-radius: 12px;
    font-size: 23px;
    margin-bottom: 16px;
}

.service-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.service-content p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 20px;
}

.types-title {
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.types-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.types-list span {
    padding: 6px 10px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: #456;
    font-size: 11px;
    font-weight: 600;
}

.service-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}


/* ================= PROBLEMS ================= */

.problems {
    background: var(--light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.problem-item {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.3s;
}

.problem-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.problem-item > span {
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.problem-item h3 {
    font-size: 16px;
    margin-bottom: 3px;
}

.problem-item p {
    color: var(--text);
    font-size: 12px;
}


/* ================= ABOUT ================= */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-card {
    position: absolute;
    right: -25px;
    bottom: 35px;

    background: var(--primary);
    color: white;

    padding: 25px 30px;
    border-radius: 14px;

    box-shadow: var(--shadow);
}

.experience-card strong {
    display: block;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 25px;
}

.experience-card span {
    font-size: 11px;
}

.about-content > p {
    color: var(--text);
    margin: 20px 0 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 800;
}

.feature h3 {
    font-size: 14px;
    margin-bottom: 3px;
}

.feature p {
    color: var(--text);
    font-size: 11px;
}


/* ================= PROCESS ================= */

.process {
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    padding: 35px 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.process-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #dcebea;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.process-icon {
    font-size: 30px;
    margin-bottom: 20px;
}

.process-card h3 {
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
}

.process-card p {
    color: var(--text);
    font-size: 13px;
}


/* ================= CTA ================= */

.cta {
    padding: 75px 0;
    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );
    color: white;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta h2 {
    max-width: 650px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
}

.cta p {
    margin-top: 12px;
    color: rgba(255,255,255,0.7);
}

.btn-white {
    flex-shrink: 0;
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
}


/* ================= FAQ ================= */

.faq {
    background: white;
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 22px 5px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: none;
    border: none;

    color: var(--dark);
    text-align: left;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.faq-question span {
    font-size: 24px;
    color: var(--primary);
    transition: 0.3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 5px 20px;
    color: var(--text);
    font-size: 14px;
}


/* ================= CONTACT ================= */

.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.contact-content > p {
    color: var(--text);
    margin: 18px 0 30px;
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-item span {
    display: block;
    color: var(--text);
    font-size: 11px;
}

.contact-item strong {
    display: block;
    font-size: 15px;
}

.contact-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.contact-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
}

.large-logo {
    color: white;
}

.available {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
}

.available span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42e8a1;
}

.contact-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
}

.contact-card > p {
    margin: 10px 0 25px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.big-phone {
    display: block;
    font-family: "Poppins", sans-serif;
    color: var(--accent);
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 25px;
}

.card-call {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 7px;
    background: white;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}


/* ================= FOOTER ================= */

.footer {
    background: #082b2a;
    color: white;
}

.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

.footer-column h4 {
    color: white;
    font-size: 13px;
    margin-bottom: 18px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin-bottom: 9px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
}


/* ================= FLOATING BUTTONS ================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons a {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    font-size: 22px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);

    transition: 0.3s;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

.floating-call {
    background: var(--primary);
}

.floating-whatsapp {
    background: #25D366;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .navbar {
        gap: 18px;
    }

    .about-grid,
    .contact-grid {
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .nav-container {
        height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 25px;

        background: white;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);

        gap: 0;
    }

    .navbar.active {
        display: flex;
    }

    .navbar > a:not(.nav-call) {
        padding: 14px 0;
        color: var(--dark) !important;
        border-bottom: 1px solid var(--border);
    }

    .nav-call {
        margin-top: 15px;
        text-align: center;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .intro-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 450px;
    }

    .experience-card {
        right: 15px;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 560px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero {
        min-height: 680px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-item strong {
        font-size: 18px;
    }

    .trust-item span {
        font-size: 9px;
    }

    .problem-grid,
    .features,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 230px;
    }

    .about-image img {
        height: 380px;
    }

    .contact-card {
        padding: 28px;
    }

    .big-phone {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        flex-direction: column;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

}