@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

:root {
    --primary: #002e5f;
    --accent: #00bfff;
    --dark: #222;
    --light-bg: #f2f2f2;
    --text-main: #333;
    --radius: 16px;
    --container: 1140px;
}

/* ========== GLOBAL RESET & BASE ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: all 0.2s linear;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== SECTION HEADINGS ========== */

.heading,
.clients .section-header h2,
.section-head h1,
.testimonials .section-header h2,
.section-head-1 h4 {
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: var(--primary);
    position: relative;
    letter-spacing: 0.2rem;
    text-transform: capitalize;
}

.heading::before,
.heading::after,
.clients .section-header h2::before,
.clients .section-header h2::after,
.section-head h1::before,
.section-head h1::after,
.testimonials .section-header h2::before,
.testimonials .section-header h2::after,
.section-head-1 h4::before,
.section-head-1 h4::after {
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: 0.4rem solid var(--primary);
    border-left: 0.4rem solid var(--primary);
}

.heading::before,
.clients .section-header h2::before,
.section-head h1::before,
.testimonials .section-header h2::before,
.section-head-1 h4::before {
    top: 5.8rem;
    left: -2rem;
}

.heading::after,
.clients .section-header h2::after,
.section-head h1::after,
.testimonials .section-header h2::after,
.section-head-1 h4::after {
    bottom: -0.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

/* FAQ heading uses accent color for borders */
.faq .heading::before,
.faq .heading::after {
    border-top-color: var(--accent);
    border-left-color: var(--accent);
}

/* ========== BUTTONS ========== */

.row .btn,
.communicate .btn,
.contact-form-btn {
    outline: none;
    border: 1px groove var(--primary);
    border-radius: 5rem;
    background: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
}

.row .btn:hover,
.contact-form-btn:hover {
    letter-spacing: 0.1rem;
    opacity: 0.9;
    color: #fff;
    background: var(--primary);
}

.communicate .btn:hover {
    letter-spacing: 0.1rem;
    opacity: 0.9;
    color: #fff;
    background: var(--accent);
}

/* ========== HEADER & NAVBAR ========== */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
    box-shadow: none;
}

.header .logo img {
    max-height: 3rem;
    width: auto;
}

.header .navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .navbar ul li {
    margin: 0 1.5rem;
}

.header .navbar ul li a {
    font-size: 2rem;
    color: #fff;
    text-transform: capitalize;
}

.header .navbar ul li a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Hamburger icon */
.header .fa-bars {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

/* ========== HOME / HERO SECTION ========== */

.home {
    min-height: 100vh;
    width: 100vw;
    background-image: url(../images/img1.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

/* ========== HOME / HERO VISIBILITY FIX (Overlay + readable text) ========== */
.home::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Darken bright areas so white text/numbers stay visible */
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.30) 45%,
        rgba(0, 0, 0, 0.10) 65%,
        rgba(0, 0, 0, 0.00) 80%
    );
    z-index: 0;
}

/* Keep hero headings above the overlay */
.home h1,
.home h2 {
    position: relative;
    z-index: 2;
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.75),
        0 0 24px rgba(0, 0, 0, 0.35);
}

/* Keep waves above overlay but below text; also prevent blocking clicks */
.home .wave {
    z-index: 1;
    pointer-events: none;
}

.home h1 {
    color: #fff;
    font-size: 5.5rem;
}

.home h2 {
    color: #fff;
    font-size: 3rem;
}

/* Waves animation */
.home .wave {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(../images/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2 {
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: 0.3;
}

.home .wave3 {
    animation-duration: 4s;
    opacity: 0.5;
}

@keyframes waves {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 100rem;
    }
}

/* ========== ABOUT SECTION ========== */

.about {
    min-height: 55vh;
    width: 100vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}

.about .row .content {
    text-align: center;
}

.about .row .content h3 {
    font-size: 3rem;
    color: #000;
}

.about .row .content p {
    font-size: 2rem;
    color: var(--text-main);
    padding: 1rem 0;
}

/* ========== SECTION HEADERS (SERVICES / PRODUCTS) ========== */

.section-head {
    margin-bottom: 60px;
    text-align: center;
    margin-top: -8rem;
}

.section-head p {
    font-size: 2rem;
    line-height: 2.8rem;
    text-align: center;
    color: var(--text-main);
}

.section-head-1 {
    margin-bottom: 60px;
}

.section-head-1 p {
    color: var(--text-main);
    font-size: 2rem;
    line-height: 2.8rem;
    text-align: center;
}

/* ========== CARD ITEMS (SERVICES & PRODUCTS) ========== */

.item {
    background: #fff;
    text-align: center;
    padding: 3rem 2.5rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.item .icon {
    margin-bottom: 2.5rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;

    /* Center either an <i> icon or an <img> */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.item .icon img{
    max-width: 60%;
    max-height: 60%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Colored icon backgrounds */
.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.2);
    color: #52ab98;
}
.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #52ab98;
}
.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #52ab98;
}
.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #52ab98;
}
.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #52ab98;
}
.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #52ab98;
}

.item h6 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2f2f2f;
}

.item p {
    font-size: 1.5rem;
    line-height: 2.6rem;
    flex: 1;
}

/* Hover effect */
.item:hover {
    background-image: linear-gradient(to bottom right, #66ffcc 0%, #ffccff 100%);
    background-position: right;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.item:hover h6,
.item:hover p {
    color: #2b6777;
}

/* ========== COUNTERS SECTION ========== */

.counters {
    background-image: url(../images/img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    padding: 4rem 2rem;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;
    text-align: center;
}

.counters i {
    color: #fff;
    margin-bottom: 0.5rem;
}

.counters .counter {
    font-size: 4.5rem;
    margin: 1rem 0;
}

/* ========== COMMUNICATE / CTA SECTION ========== */

.communicate {
    text-align: center;
    background-image: url(../images/img3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 4rem 2rem;
}

.communicate h3 {
    margin-top: 3rem;
    font-size: 3rem;
}

.communicate p {
    font-size: 2rem;
}

/* ========== TESTIMONIALS (if used) ========== */

.testimonials {
    position: relative;
    padding: 9rem 0 6rem 0;
    background: var(--light-bg);
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 1.5rem 3rem 1.5rem;
    background: #fff;
}

.testimonials .testimonial-img {
    position: relative;
    background: #000;
    overflow: hidden;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 3rem 1.5rem;
    text-align: center;
    background: #fff;
}

.testimonials .testimonial-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials .testimonial-text h4 {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 300;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 0.5rem;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #ddd;
}

.testimonials .owl-dot.active {
    background-color: #4F84C4;
}

/* ========== CLIENTS SECTION ========== */

.clients {
    position: relative;
    padding: 9rem 0;
    text-align: center;
}

.clients .section-header p {
    padding-bottom: 1rem;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--text-main);
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 1.5rem 0;
    margin: 0 auto;
}

.clients img:hover {
    opacity: 0.5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 0.5rem;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4F84C4;
}

/* ========== TEAM SECTION ========== */

.team {
    width: 100vw;
    min-height: 95vh;
    text-align: center;
    background-color: #222;
    padding-bottom: 4rem;
}

.team .heading {
    color: var(--accent);
}

.team .heading::before,
.team .heading::after {
    border-color: var(--accent);
}

/* all cards in one row on desktop */
.team .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team .row .card {
    height: 35rem;
    width: 25rem;
    background-color: #fff;
    text-align: center;
    margin: 5rem 2rem;
    position: relative;
    overflow: hidden;
    -webkit-box-reflect: below 5px linear-gradient(transparent 70%, #0004);
    transition: 0.5s;
}

.team .row .card:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.team .row .card .image {
    margin: 1rem 0;
    padding-top: 4rem;
}

.team .row .card .image img {
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    border: 0.5rem solid #fff;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    object-fit: cover;
    margin: 0 auto;
}

.team .row .card .info h3 {
    font-size: 2rem;
    color: #333;
}

.team .row .card .info span {
    font-size: 1.8rem;
    color: var(--accent);
}

.team .row .card .info .icons a {
    margin-top: 4rem;
    font-size: 2rem;
    color: #333;
    padding: 1rem;
}

/* Social icon hover colors */
.team .row .card .info .icons .fa-facebook-f:hover {
    color: #4267B2;
    text-decoration: none;
}
.team .row .card .info .icons .fa-twitter:hover {
    color: #1DA1F2;
    text-decoration: none;
}
.team .row .card .info .icons .fa-instagram:hover {
    color: #C13584;
    text-decoration: none;
}
.team .row .card .info .icons .fa-linkedin:hover {
    color: #2867B2;
    text-decoration: none;
}

/* Decorative circles */
.team .row .card::before,
.team .row .card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    height: 13.5rem;
    width: 13.5rem;
    z-index: -1;
}

.team .row .card::before {
    background: var(--accent);
    top: -3rem;
    right: -4rem;
}

.team .row .card::after {
    background: #ccc;
    bottom: -3rem;
    left: -4rem;
}

/* ========== CONTACT SECTION ========== */

.contact {
    text-align: center;
    align-items: center;
}

.contact .heading {
    margin-bottom: 5rem;
}

.contact-in {
    width: 80%;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0 10px 0 #666;
}

.contact-map {
    flex: 1 1 50%;
    min-width: 280px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 30rem;
}

.contact-form {
    flex: 1 1 50%;
    min-width: 280px;
    text-align: left;
}

/* Contact form fields */

.contact-form-txt,
.contact-form-email,
.contact-form-phone {
    margin-left: 2rem;
    width: 95%;
    height: 4rem;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 5rem;
    outline: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
    font-size: 1.5rem;
}

.contact-form-txtarea {
    margin-left: 2rem;
    width: 95%;
    height: 13rem;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 1rem;
    outline: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.contact-form-txt::placeholder,
.contact-form-email::placeholder,
.contact-form-phone::placeholder,
.contact-form-txtarea::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-btn {
    margin-left: 2rem;
}

/* ========== FOOTER ========== */

.footer {
    position: relative;
    padding: 0 0 3rem 0;
    background: #333;
    color: #fff;
}

.footer .footer-top {
    background: var(--primary);
    padding: 6rem 0 3rem 0;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 3rem;
}

.footer .footer-top .social-links a {
    font-size: 1.8rem;
    display: inline-block;
    background: #fff;
    color: var(--accent);
    line-height: 1;
    padding: 0.9rem 0;
    margin-right: 0.4rem;
    text-align: center;
    width: 3.6rem;
    height: 3.6rem;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background: var(--accent);
    color: #fff;
}

.footer .footer-top h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 5rem;
    border-bottom: 2px solid #fff;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 0.8rem;
    color: #fff;
    font-size: 1.6rem;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #fff;
    padding: 0.7rem 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 1.4rem;
    color: #fff;
}

.footer .footer-top .footer-links ul a:hover {
    color: var(--accent);
}

.footer .footer-top .footer-contact p {
    color: #fff;
    line-height: 2.6rem;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 0.6rem 0.8rem;
    width: 60%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 0.6rem 0;
    text-align: center;
    color: #000;
    border: 1px solid #fff;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    letter-spacing: 0.2rem;
}

.footer .footer-top .footer-newsletter p {
    color: #fff;
    font-size: 1.4rem;
}

.footer .credit,
.footer .copyright {
    text-align: center;
    padding-top: 3rem;
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .footer .credit {
        text-align: right;
    }
    .footer .copyright {
        text-align: left;
    }
}

/* ========== BACK TO TOP BUTTON ========== */

.back-to-top {
    position: fixed;
    display: none;
    background-color: var(--accent);
    color: #fff;
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    line-height: 1;
    font-size: 4.4rem;
    right: 1.5rem;
    bottom: 1.5rem;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #fff;
}

.back-to-top i:hover {
    color: #000;
}

/* ========== FAQ SECTION ========== */

.faq {
    min-height: 70vh;
    width: 100vw;
    text-align: center;
    padding: 0 2rem 4rem;
    background: url(../images/faq.jpg) no-repeat center center / cover;
}

.faq .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.faq .row .accordion-container {
    width: 50%;
    text-align: left;
}

.faq .row .accordion {
    margin: 1rem 2rem 0 1rem;
}

.faq .accordion-header {
    background-color: var(--accent);
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.faq .accordion-header span {
    display: inline-block;
    text-align: center;
    height: 4rem;
    width: 5rem;
    line-height: 4rem;
    font-size: 2rem;
    background: #333;
    color: #fff;
    clip-path: polygon(0% 0%,75% 0%,100% 50%,75% 100%,0% 100%);
}

.faq .accordion-header h3 {
    display: inline;
    color: #333;
    font-weight: 400;
    padding-left: 0.5rem;
    font-size: 1.5rem;
}

.faq .accordion-body {
    padding: 1rem;
    color: #444;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
    background-color: #fff;
    font-size: 1.3rem;
    display: none;
    margin-left: 1rem;
    margin-right: 2rem;
}

/* ========== RESPONSIVENESS ========== */

/* Slight adjustment for FAQ height */
@media (max-width: 1200px) {
    .faq {
        min-height: 70vh;
    }
}

/* Tablet & below */
@media (max-width: 1000px) {
    html {
        font-size: 50%;
    }

    .header .fa-bars {
        display: block;
        color: #fff;
        margin-right: 1rem;
    }

    .header .fa-bars:hover {
        color: var(--accent);
    }

    .header .navbar {
        position: fixed;
        top: -120%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.3);
    }

    .header .navbar ul {
        width: 100%;
        flex-flow: column;
        padding: 1rem 0;
    }

    .header .navbar ul li {
        margin: 1rem 0;
    }

    .header .navbar ul li a {
        color: #777;
        font-size: 2.4rem;
    }

    .header .fa-times {
        transform: rotate(90deg);
    }

    /* Shown when JS adds .nav-toggle */
    .header .navbar.nav-toggle {
        top: 5.8rem;
    }

    .home h1 {
        font-size: 4rem;
    }
    .home h2 {
        font-size: 2rem;
    }

    .about {
        min-height: 38vh;
        margin-top: -3rem;
        margin-bottom: -2rem;
    }

    .about .row {
        padding: 0 2rem;
    }

    .about .row .content h3 {
        font-size: 2rem;
    }

    .about .row .content p {
        font-size: 1.3rem;
    }

    .clients {
        padding: 6rem 0;
    }

    .team {
        min-height: auto;
    }

    .team .row {
        flex-direction: column;
    }

    .contact .heading {
        margin-bottom: 3rem;
        margin-top: -2rem;
    }

    .contact-in {
        width: 90%;
    }

    .contact-map,
    .contact-form {
        flex: 1 1 100%;
    }

    .contact-form-txt,
    .contact-form-email,
    .contact-form-phone,
    .contact-form-txtarea {
        width: 90%;
        margin-left: 2rem;
    }

    .contact-form-btn {
        width: 12rem;
    }

    .back-to-top {
        width: 3rem;
        height: 3rem;
        font-size: 3rem;
    }

    .faq {
        padding: 0 0 4rem;
        min-height: 60vh;
    }

    .faq .row {
        padding: 0 1.5rem;
        flex-flow: column;
    }

    .faq .row .accordion-container {
        width: 100%;
    }
}

/* Counters responsive grid */
@media (max-width: 700px) {
    .counters .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container > div:nth-of-type(1),
    .counters .container > div:nth-of-type(2) {
        border-bottom: 1px lightskyblue solid;
        padding-bottom: 2rem;
    }
}

/* Small phones */
@media (max-width: 575.98px) {
    html {
        font-size: 55%;
    }

    .counters .container {
        grid-template-columns: 1fr;
    }

    .section-head-1 h4 {
        margin-top: 0 !important;
    }

    .home {
        padding-top: 8rem;
    }
}



/* ========== PROFESSIONAL ALIGNMENT + WHATSAPP CTA ========== */

/* Consistent section spacing */
section{
  scroll-margin-top: 90px;
}

/* Better global container feel */
.container-max{
  width: min(92vw, var(--container));
  margin-inline: auto;
}

/* CONTACT: align form fields nicely */
.contact-in{
  width: min(92vw, var(--container));
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form form{
  padding: 1rem 1.2rem 2rem 1.2rem;
}

.contact-form-txt,
.contact-form-email,
.contact-form-phone,
.contact-form-txtarea{
  margin-left: 0;
  width: 100%;
}

.contact-actions{
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.contact-form-btn{
  border-radius: 999px;
  padding: 1.2rem 1.8rem;
  font-weight: 600;
}

.contact-form-btn--wa{
  background: #25D366;
}
.contact-form-btn--wa:hover{
  filter: brightness(0.95);
}

/* Floating WhatsApp button */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.wa-float i{
  font-size: 2.2rem;
}

.wa-label{
  font-size: 1.4rem;
  font-weight: 600;
}

/* Make buttons/links feel modern */
.btn, button, .contact-form-btn{
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover, button:hover, .contact-form-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

/* Small screens: hide label, keep icon */
@media (max-width: 480px){
  .wa-label{ display:none; }
  .wa-float{ padding: 12px 14px; }
}


/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 991px){
    .section-head{ margin-top: -4rem; }
}

@media (max-width: 768px){
    html{ font-size: 56.25%; } /* 1rem = 9px */
    .item{ padding: 2rem 1.8rem; }
    .item h6{ font-size: 1.8rem; }
    .item p{ font-size: 1.4rem; line-height: 2.4rem; }
    .section-head p{ font-size: 1.6rem; }
}

@media (max-width: 480px){
    html{ font-size: 53.125%; } /* 1rem ≈ 8.5px */
    .item .icon{ width: 8rem; height: 8rem; }
}