
/* =========================================================
   KAMCONNECT TECHNOLOGIES
   MAIN WEBSITE STYLESHEET
========================================================= */

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #06b6d4;

    --dark: #07111f;
    --dark-2: #0b1728;
    --dark-3: #101f33;

    --text: #172033;
    --muted: #667085;

    --light: #f6f8fc;
    --white: #ffffff;

    --border: #e6eaf0;

    --radius: 18px;

    --shadow:
        0 20px 50px rgba(7, 17, 31, 0.08);

    --transition: all .3s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-weight: 800;

    line-height: 1.2;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--primary);
    color: white;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    padding: 20px 0;

    transition: var(--transition);

    z-index: 1000;
}

.navbar.scrolled {

    padding: 12px 0;

    background: rgba(7, 17, 31, .96);

    backdrop-filter: blur(15px);

    box-shadow: 0 5px 30px rgba(0,0,0,.15);
}

.brand-logo {

    width: 290px;

    height: auto;
}

.navbar-nav {

    gap: 5px;
}

.nav-link {

    color: rgba(255,255,255,.8) !important;

    font-size: 14px;

    font-weight: 600;

    padding: 10px 15px !important;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {

    color: white !important;
}

.inner-navbar {

    background: var(--dark);
}


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

.btn {

    border-radius: 10px;

    font-weight: 700;

    padding: 12px 22px;

    transition: var(--transition);
}

.btn-primary-custom {

    background: var(--primary);

    color: white;

    border: 1px solid var(--primary);

    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}

.btn-primary-custom:hover {

    background: var(--primary-dark);

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(37,99,235,.3);
}

.btn-dark-custom {

    background: var(--dark);

    color: white;
}

.btn-dark-custom:hover {

    background: var(--primary);

    color: white;

    transform: translateY(-2px);
}


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

.hero-section {

    position: relative;

    min-height: 100vh;

    color: white;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(37,99,235,.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 70%,
            rgba(6,182,212,.12),
            transparent 25%
        ),
        var(--dark);

    overflow: hidden;
}

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:
        linear-gradient(
            rgba(255,255,255,.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.1) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 15px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    border-radius: 50px;

    font-size: 13px;

    color: rgba(255,255,255,.85);
}

.pulse-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34,197,94,.12);
}

.hero-title {

    max-width: 850px;

    font-size: clamp(
        45px,
        6vw,
        78px
    );

    letter-spacing: -3px;
}

.hero-title span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #60a5fa,
            #22d3ee
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-text {

    max-width: 650px;

    font-size: 18px;

    color: rgba(255,255,255,.68);

    margin-top: 25px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}

.hero-trust {

    display: flex;

    gap: 45px;
}

.hero-trust div {

    display: flex;

    flex-direction: column;
}

.hero-trust strong {

    font-size: 28px;
}

.hero-trust span {

    color: rgba(255,255,255,.5);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


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

.hero-visual {

    height: 600px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}

.tech-circle {

    position: relative;

    width: 430px;

    height: 430px;
}

.circle-ring {

    position: absolute;

    border: 1px solid rgba(96,165,250,.2);

    border-radius: 50%;

    inset: 0;
}

.ring-one {

    transform: rotateX(65deg) rotateY(10deg);

    animation: rotateCircle 15s linear infinite;
}

.ring-two {

    inset: 45px;

    transform: rotateY(65deg);

    animation: rotateCircleReverse 12s linear infinite;
}

.center-tech {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 130px;

    height: 130px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 0 70px rgba(37,99,235,.4);

    z-index: 5;
}

.center-tech i {

    font-size: 40px;
}

.center-tech span {

    font-size: 10px;

    letter-spacing: 3px;

    margin-top: 4px;
}

.tech-icon {

    position: absolute;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.15);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 25px;

    backdrop-filter: blur(10px);

    z-index: 4;
}

.icon-html {
    top: 25px;
    left: 180px;
}

.icon-cloud {
    right: 20px;
    top: 180px;
}

.icon-database {
    bottom: 35px;
    left: 170px;
}

.icon-phone {
    left: 15px;
    top: 180px;
}

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(15px);

    border-radius: 14px;

    z-index: 10;

    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.floating-card i {

    font-size: 24px;

    color: #60a5fa;
}

.floating-card div {

    display: flex;

    flex-direction: column;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card small {

    color: rgba(255,255,255,.5);

    font-size: 10px;
}

.card-one {

    top: 80px;

    right: -20px;

    animation: float 4s ease-in-out infinite;
}

.card-two {

    bottom: 90px;

    left: -20px;

    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotateCircle {

    from {
        transform:
            rotateX(65deg)
            rotateY(10deg)
            rotateZ(0);
    }

    to {
        transform:
            rotateX(65deg)
            rotateY(10deg)
            rotateZ(360deg);
    }
}

@keyframes rotateCircleReverse {

    from {
        transform:
            rotateY(65deg)
            rotateZ(360deg);
    }

    to {
        transform:
            rotateY(65deg)
            rotateZ(0);
    }
}


/* =========================================================
   CLIENT STRIP
========================================================= */

.client-strip {

    padding: 25px 0;

    background: var(--light);

    border-bottom: 1px solid var(--border);
}

.client-strip p {

    color: var(--muted);

    font-size: 13px;
}

.client-items {

    display: flex;

    justify-content: flex-end;

    gap: 35px;

    flex-wrap: wrap;
}

.client-items span {

    font-size: 12px;

    font-weight: 800;

    color: #9aa3b2;

    letter-spacing: 1px;
}


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

.section-padding {

    padding: 110px 0;
}

.section-label {

    display: inline-block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 14px;
}

.light-label {
    color: #93c5fd;
}

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}

.section-heading h2,
.section-heading-centered h2 {

    font-size: clamp(
        34px,
        4vw,
        50px
    );

    letter-spacing: -2px;

    margin-bottom: 0;
}

.section-heading h2 span,
.section-heading-centered h2 span,
.section-title span {

    color: var(--primary);
}

.section-heading-centered {

    max-width: 700px;

    margin: auto;
}

.section-heading-centered p {

    color: var(--muted);

    margin-top: 15px;
}

.text-link {

    color: var(--text);

    font-weight: 700;

    white-space: nowrap;
}

.text-link:hover {

    color: var(--primary);
}


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

.service-card {

    height: 100%;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);

    background: white;
}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;
}

.service-card.featured {

    color: white;

    background: var(--dark);

    border-color: var(--dark);
}

.service-icon {

    width: 60px;

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 14px;

    color: var(--primary);

    background: #eff6ff;

    font-size: 25px;

    margin-bottom: 28px;
}

.featured .service-icon {

    background: rgba(255,255,255,.08);

    color: #60a5fa;
}

.service-card h3 {

    font-size: 22px;

    margin-bottom: 14px;
}

.service-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 25px;
}

.featured p {

    color: rgba(255,255,255,.6);
}

.service-card a {

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;
}


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

.about-section {

    background: var(--light);
}

.section-title {

    font-size: clamp(
        35px,
        4vw,
        52px
    );

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.large-text {

    font-size: 18px;

    color: #4b5565;
}

.about-visual {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.about-main-card {

    width: 90%;

    max-width: 500px;

    background: var(--dark);

    border-radius: 25px;

    padding: 30px;

    transform: rotate(-3deg);

    box-shadow: 30px 30px 70px rgba(7,17,31,.2);
}

.code-top {

    display: flex;

    gap: 7px;

    margin-bottom: 30px;
}

.code-top span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,.3);
}

.about-code pre {

    color: #93c5fd;

    font-family: monospace;

    line-height: 2;

    font-size: 15px;
}

.about-code b {

    color: #22d3ee;
}

.experience-card {

    position: absolute;

    right: 0;

    bottom: 35px;

    padding: 20px;

    border-radius: 15px;

    background: white;

    box-shadow: var(--shadow);

    display: flex;

    align-items: center;

    gap: 15px;
}

.experience-card strong {

    font-size: 42px;

    color: var(--primary);
}

.experience-card span {

    font-size: 12px;

    color: var(--muted);
}

.check-list {

    display: grid;

    gap: 13px;

    margin-top: 25px;
}

.check-list div {

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 14px;

    font-weight: 600;
}

.check-list i {

    color: var(--primary);
}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 60px;

    border-top: 1px solid var(--border);
}

.process-item {

    position: relative;

    padding: 45px 30px;

    border-right: 1px solid var(--border);
}

.process-item:last-child {
    border-right: none;
}

.process-number {

    color: #cbd5e1;

    font-size: 12px;

    font-weight: 800;
}

.process-item > i {

    display: block;

    font-size: 30px;

    color: var(--primary);

    margin: 35px 0 20px;
}

.process-item h3 {

    font-size: 20px;
}

.process-item p {

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {

    background: var(--light);
}

.project-card {

    display: block;

    height: 330px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--dark);
}

.project-large {
    height: 400px;
}

.project-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.project-card:hover img {

    transform: scale(1.05);
}

.project-overlay {

    position: absolute;

    inset: 0;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            transparent 25%,
            rgba(7,17,31,.95)
        );

    color: white;
}

.project-overlay span {

    font-size: 10px;

    letter-spacing: 2px;

    color: #93c5fd;
}

.project-overlay h3 {

    font-size: 22px;

    margin-top: 8px;
}

.project-overlay > i {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;
}

.project-cta {

    height: 330px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #0e7490
        );

    border-radius: var(--radius);

    color: white;
}

.project-cta h3 {

    font-size: 32px;

    margin: 10px 0 25px;
}

.project-cta h3 span {

    display: block;

    opacity: .7;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-card {

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    height: 100%;

    transition: var(--transition);
}

.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.stars {

    color: #f59e0b;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.testimonial-card > p {

    font-size: 15px;

    color: #4b5565;

    margin-bottom: 30px;
}

.client-profile {

    display: flex;

    align-items: center;

    gap: 12px;
}

.client-avatar {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #dbeafe;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}

.client-profile div:last-child {

    display: flex;

    flex-direction: column;
}

.client-profile strong {
    font-size: 13px;
}

.client-profile small {

    color: var(--muted);

    font-size: 11px;
}


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

.cta-section {

    padding: 100px 0;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(34,211,238,.25),
            transparent 25%
        ),
        var(--dark);
}

.cta-content {

    max-width: 750px;

    text-align: center;

    margin: auto;
}

.cta-content h2 {

    font-size: clamp(
        38px,
        5vw,
        62px
    );

    letter-spacing: -2px;

    margin: 10px 0 20px;
}

.cta-content h2 span {

    display: block;

    color: #60a5fa;
}

.cta-content p {

    color: rgba(255,255,255,.6);

    max-width: 600px;

    margin: 0 auto 30px;
}


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

.footer {

    padding: 75px 0 25px;

    color: rgba(255,255,255,.7);

    background: #040b14;
}

.footer-logo {

    width: 180px;

    margin-bottom: 20px;
}

.footer-description {

    max-width: 350px;

    font-size: 14px;

    color: rgba(255,255,255,.5);
}

.footer h5 {

    color: white;

    font-size: 14px;

    margin-bottom: 20px;
}

.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

    display: grid;

    gap: 10px;
}

.footer li,
.footer a {

    font-size: 13px;

    color: rgba(255,255,255,.5);

    transition: var(--transition);
}

.footer a:hover {

    color: white;
}

.contact-list li {

    display: flex;

    gap: 10px;
}

.contact-list i {

    color: #60a5fa;
}

.footer hr {

    margin: 45px 0 20px;

    border-color: rgba(255,255,255,.1);
}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}

.footer-bottom a {

    margin-left: 20px;
}

.social-links {

    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.social-links a {

    width: 38px;

    height: 38px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {

    padding: 190px 0 100px;

    color: white;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(37,99,235,.25),
            transparent 30%
        ),
        var(--dark);
}

.page-hero h1 {

    max-width: 850px;

    font-size: clamp(
        45px,
        6vw,
        70px
    );

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.page-hero h1 span {

    color: #60a5fa;
}

.page-hero p {

    max-width: 650px;

    color: rgba(255,255,255,.6);

    font-size: 18px;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-stat-box {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    background: var(--dark);

    border-radius: 20px;

    overflow: hidden;

    color: white;
}

.about-stat-box div {

    padding: 45px 30px;

    border: 1px solid rgba(255,255,255,.08);
}

.about-stat-box strong {

    display: block;

    font-size: 42px;

    color: #60a5fa;
}

.about-stat-box span {

    font-size: 12px;

    color: rgba(255,255,255,.5);
}

.mission-section {

    background: var(--light);
}

.mission-card {

    height: 100%;

    padding: 45px;

    border-radius: var(--radius);

    background: white;

    border: 1px solid var(--border);
}

.mission-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #eff6ff;

    color: var(--primary);

    font-size: 25px;

    margin-bottom: 25px;
}

.mission-card p {

    color: var(--muted);
}

.value-card {

    text-align: center;

    padding: 35px 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.value-card i {

    font-size: 32px;

    color: var(--primary);
}

.value-card h4 {

    margin: 20px 0 10px;

    font-size: 18px;
}

.value-card p {

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   SERVICE PAGE
========================================================= */

.big-service-card {

    height: 100%;

    padding: 45px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    position: relative;

    transition: var(--transition);
}

.big-service-card:hover {

    border-color: var(--primary);

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.big-service-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: #eff6ff;

    color: var(--primary);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 25px;
}

.big-service-card > span {

    position: absolute;

    right: 35px;

    top: 35px;

    color: #cbd5e1;

    font-weight: 800;
}

.big-service-card h2 {

    font-size: 27px;

    margin-bottom: 15px;
}

.big-service-card p {

    color: var(--muted);
}

.big-service-card ul {

    list-style: none;

    padding: 0;

    margin-top: 25px;

    display: grid;

    gap: 10px;
}

.big-service-card li {

    font-size: 13px;

    font-weight: 600;
}

.big-service-card li i {

    color: var(--primary);

    margin-right: 8px;
}

.technology-section {

    background: var(--light);
}

.technology-list {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 40px;
}

.technology-list span {

    padding: 14px 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-filter {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-bottom: 45px;

    flex-wrap: wrap;
}

.filter-btn {

    border: 1px solid var(--border);

    background: white;

    padding: 10px 20px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {

    background: var(--dark);

    color: white;

    border-color: var(--dark);
}

.portfolio-card {

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    background: white;

    height: 100%;

    transition: var(--transition);
}

.portfolio-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.portfolio-card > img {

    width: 100%;

    height: 300px;

    object-fit: cover;
}

.portfolio-info {

    padding: 30px;
}

.portfolio-info > span {

    color: var(--primary);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;
}

.portfolio-info h3 {

    font-size: 23px;

    margin: 10px 0;
}

.portfolio-info p {

    color: var(--muted);

    font-size: 14px;
}

.portfolio-info a {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;
}

.mobile-project {

    background: var(--dark);

    color: white;
}

.mobile-preview {

    height: 300px;

    display: flex;

    justify-content: center;

    align-items: center;

    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.4),
            transparent 50%
        );
}

.phone-frame {

    width: 150px;

    height: 260px;

    border: 5px solid #334155;

    border-radius: 25px;

    padding: 8px;

    background: #07111f;
}

.phone-screen {

    height: 100%;

    border-radius: 18px;

    background:
        linear-gradient(
            160deg,
            #2563eb,
            #06b6d4
        );

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    text-align: center;

}

.phone-screen i {

    font-size: 35px;

    margin-bottom: 10px;
}

.phone-screen small {

    opacity: .7;

    font-size: 9px;
}

.mobile-project .portfolio-info {

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

.mobile-project .portfolio-info p {

    color: rgba(255,255,255,.5);
}

.approach-list {

    display: grid;

    gap: 10px;
}

.approach-list > div {

    display: grid;

    grid-template-columns: 50px 1fr;

    column-gap: 15px;

    padding: 20px;

    border-bottom: 1px solid var(--border);
}

.approach-list span {

    grid-row: span 2;

    color: var(--primary);

    font-weight: 800;
}

.approach-list strong {

    font-size: 15px;
}

.approach-list p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


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

.contact-details {

    display: grid;

    gap: 20px;

    margin-top: 35px;
}

.contact-detail {

    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-icon {

    width: 48px;

    height: 48px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 12px;

    color: var(--primary);

    background: #eff6ff;

}

.contact-detail div:last-child {

    display: flex;

    flex-direction: column;
}

.contact-detail small {

    color: var(--muted);

    font-size: 11px;
}

.contact-detail strong {

    font-size: 14px;
}

.contact-socials {

    display: flex;

    gap: 10px;

    margin-top: 30px;
}

.contact-socials a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: 1px solid var(--border);

    color: var(--text);

    display: flex;

    justify-content: center;

    align-items: center;
}

.contact-socials a:hover {

    background: var(--dark);

    color: white;
}

.contact-form-card {

    padding: 40px;

    border-radius: 20px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.form-heading {

    margin-bottom: 30px;
}

.form-heading h3 {

    font-size: 25px;
}

.form-heading p {

    color: var(--muted);

    font-size: 13px;
}

.form-control,
.form-select {

    min-height: 52px;

    border-radius: 10px;

    border-color: var(--border);

    padding: 12px 15px;

    font-size: 14px;
}

textarea.form-control {

    min-height: 140px;
}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(37,99,235,.1);
}

form label {

    display: block;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-message {

    margin-top: 15px;

    font-size: 13px;
}

.map-section {

    padding-bottom: 100px;
}

.map-placeholder {

    height: 350px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #e2e8f0,
            #cbd5e1
        );

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.map-placeholder i {

    font-size: 45px;

    color: var(--primary);
}

.map-placeholder p {

    color: var(--muted);
}


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

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #25d366;

    color: white;

    font-size: 27px;

    box-shadow:
        0 10px 30px rgba(37,211,102,.35);

    z-index: 900;

    transition: var(--transition);
}

.whatsapp-button:hover {

    color: white;

    transform: scale(1.08);
}

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 95px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: var(--dark);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    pointer-events: none;

    transition: var(--transition);

    z-index: 900;
}

.back-to-top.show {

    opacity: 1;

    pointer-events: auto;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .navbar-collapse {

        margin-top: 15px;

        padding: 20px;

        background: var(--dark);

        border-radius: 15px;
    }

    .hero-section {

        min-height: auto;

        padding-bottom: 80px;
    }

    .hero-title {

        letter-spacing: -2px;
    }

    .client-items {

        justify-content: flex-start;

        margin-top: 15px;
    }

    .process-grid {

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

    .process-item:nth-child(2) {

        border-right: none;
    }

}

@media (max-width: 767px) {

    .section-padding {

        padding: 75px 0;
    }

    .hero-section {

        padding-top: 110px;
    }

    .hero-title {

        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-text {

        font-size: 16px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {

        text-align: center;
    }

    .hero-trust {

        gap: 20px;
    }

    .hero-trust strong {

        font-size: 22px;
    }

    .section-heading {

        align-items: flex-start;

        flex-direction: column;
    }

    .section-heading h2 {

        font-size: 36px;
    }

    .process-grid {

        grid-template-columns: 1fr;
    }

    .process-item {

        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .project-large {

        height: 330px;
    }

    .about-stat-box {

        grid-template-columns: 1fr 1fr;
    }

    .page-hero {

        padding: 150px 0 80px;
    }

    .page-hero h1 {

        font-size: 45px;

        letter-spacing: -2px;
    }

    .contact-form-card {

        padding: 25px;
    }

    .footer-bottom {

        flex-direction: column;
    }

    .footer-bottom a {

        margin-left: 0;

        margin-right: 15px;
    }

}

@media (max-width: 480px) {

    .brand-logo {

        width: 155px;
    }

    .hero-title {

        font-size: 39px;
    }

    .hero-trust {

        display: grid;

        grid-template-columns:
            repeat(3,1fr);
    }

    .hero-trust span {

        font-size: 9px;
    }

    .about-stat-box {

        grid-template-columns: 1fr;
    }

    .mission-card,
    .big-service-card {

        padding: 30px;
    }

    .project-cta {

        height: auto;

        min-height: 300px;

        padding: 30px;
    }

}
