@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');

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

body {
    background-color: var(--bg);
}

/* Global */

:root {
    --bg: #0d0d0d;
    --bg-soft: #121212;
    --black: #050505;
    --card: #171717;
    --border: #262626;
    --text: #f3f3f3;
    --muted: #a1a1a1;
    --accent: #f5620a;
    --accent-dark: #c94f06;
    --white: #ffffff;

    --font-heading: "Syne", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --navbar-font: "Inter", sans-serif;

    --container-width: 1120px;
    --radius: 12px;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;
    --transition: 0.25s ease;

}

/* Buttons */

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: 25px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
    text-decoration: none;
}

.button-primary {
    background: var(--accent);
    color: var(--white);
}

.button-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.button-secondary {
    background: var(--bg);
    border-color: var(--border);
    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Base */

html {
    scroll-behavior: smooth;
}

/* Page Loader */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    overflow: hidden;
}

.loader-panel {
    width: 50%;
    height: 100vh;
    background: #050505;
    transition: transform 0.8s ease;
}

.loader-logo {
    position: absolute;
    width: 240px;
    max-width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: logoFade 1.2s ease forwards;
}

.page-loader.loader-logo img {
    opacity: 0;
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.page-loader.open .loader-left {
    transform: translateX(-100%);
}

.page-loader.open .loader-right {   
    transform: translateX(100%);
}

.loader-logo.is-hidden {
    display: none;
}


/* Hamburger Menu Section */

.site-header,
.site-header-class {
    position: sticky;
    top: 0;
    z-index: 9999;

    background: var(--accent);
    height: 75px;
    border-bottom: solid 1px var(--white);
}

.site-header-class {
    background: var(--accent);
    height: 75px;
    border-bottom: solid 1px var(--white);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1rem, 8vw, 10rem);
    min-height: 72px;
}

.toggle-h2 {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-family: var(--navbar-font);
    text-decoration: none;
    list-styles: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: var(--text);
    transition: 0.5s ease-in-out;
}

.nav-links a:hover {
    color: var(--border);
}

.button.nav-cta {
    background: var(--bg);
    color: var(--white);
    transition: 0.3s ease-in-out;
}

.button.nav-cta:hover {
    background: black;
    color: var(--accent);
}

.logo img {
    height: 75px;
    width: auto;
}

.menu-toggle {
    display: none;
}

/* Hero Section */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 7rem;
    border-top: none;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.962) 100%),
        url("./assets/hero-background.jpg");
    color: var(--white);
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    border-bottom: solid 1px var(--bg-soft);
    clip-path: polygon(0 0,
            100% 0,
            100% 97%,
            75% 100%,
            50% 98%,
            25% 100%,
            0 97%);
}

.hero-title {
    color: var(--white);
    font-weight: 900;
    gap: 350px;
    font-size: 4.8rem;
}

.hero-div {
    padding-left: 200px;
    font-family: var(--font-heading);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(241, 240, 239, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.logo img {
    height: 75px;
    width: auto;
    padding: 15px;
}

.hero-content {
    position: relative;
    display: grid;
    gap: 1.25rem;
    font-family: "Space Grotesk", sans-serif;
}

.eyebrow {
    color: var(--accent);
    font-family: var(--font-heading);
}


.hero-logo img {
    width: 300px;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
    margin: 0 auto;
}

.accent-text {
    color: var(--accent);
}

.hero-text {
    line-height: 25px;
    padding-top: 25px;
}

/* Introduction Section */

.container-group {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
}

.section-title {
    color: var(--white);
    margin: 10px;
    font-size: 4.2rem;
}

.orange {
    color: var(--accent);
}

.section-text {
    color: var(--white);
    font-family: var(--font-body);
}

.site-section.introduce {
    background-color: var(--bg);
    padding: 100px;
}

.section-label {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 800;
}

.left-part {
    position: relative;
    padding: 25px;
}

.left-part::before {
    content: "";
    position: absolute;
    inset: 0;

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

    background-size: 30px 30px;

    pointer-events: none;
}

.text-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.right-part {
    display: flex;
    justify-content: center;
}

.right-part img {
    width: 100%;
    max-width: 450px;
    filter: brightness(1.5);
    opacity: 0.4;
}

.right-part img {
    filter:
        drop-shadow(0 0 40px rgba(245, 98, 10, 0.15));
}

/* Conversation Section */

.site-section.conversation-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--black);
    clip-path: polygon(0 0,
            100% 6%,
            100% 100%,
            0 100%);
}

.site-section.conversation-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;

    background:
        linear-gradient(rgba(17, 17, 17, 0.82),
            rgba(17, 17, 17, 0.82)),
        url("./assets/conversation-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.site-section.conversation-section .container {
    position: relative;
    z-index: 1;
}

.section-intro.conversation-intro {
    color: var(--white);
    line-height: 1.8rem;
    font-family: var(--font-body);
}

.conversation-section .conversation-layout {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.left-section {
    max-width: 650px;
    margin: 0 auto;
}

.right-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-column-grid {
    width: 100%;
    max-width: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.info-card {
    min-height: 170px;
    padding: 1rem;
    background-color: var(--black);
    border: solid 1px var(--accent);
    border-radius: 10px;

}

.info-card p {
    color: var(--white) !important;
    font-size: 0.8rem !important;
    line-height: 1.4rem;
    font-size: 1rem !important;
    font-family: var(--font-body);
}

.info-card:nth-child(1) {
    margin-top: 20px;
}

.info-card:nth-child(3) {
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

/* What Clients Say */


.feedback-section {
    min-height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
}

.feedback-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 500px 760px;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.feedback-layout {
    grid-template-columns: 500px 760px;
    gap: 0;
}

.feedback-left {
    position: relative;
    z-index: 2;
}

.feedback-right {
    position: relative;
    z-index: 1;
    margin-left: -20px;
}

.feedback-track {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-soft);
    border-radius: 20px;
}

.feedback-card {
    width: 80%;
    max-width: 620px;
    min-height: 250px;

    margin: 0;
    padding: 50px;

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

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    text-align: left;
}

.feedback-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading.clients {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 300px;
    width: 500px;
    background:
        linear-gradient(rgba(245, 98, 10, 0.75),
            rgba(245, 98, 10, 0.75)),
        url("./assets/code.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 100px 0;
    z-index: 1;
    margin-left: 50px;
    font-size: 3.2rem;
    text-align: center;
}

.span-clients {
    font-size: 20rem;
    position: relative;
    top: -80px;
}

.span-clients-upside {
    font-size: 20rem;
    position: relative;
    bottom: -200px;
}

.feedback-text {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--white)
}

.feedback-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person-details {
    display: flex;
    flex-direction: column;
}

.brett {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.person-image {
    width: 56px;
    height: 56px;

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

    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--accent),
            #ff8a3d);

    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.amhto {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: var(--accent);
}

/* Mobile */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .logo {
        flex-shrink: 0;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        z-index: 9998;

        background: var(--bg);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        opacity: 0;
        transition: right 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    .menu-toggle {
        position: relative;
        z-index: 10000;
    }

    .toggle-h2 {
        display: block;
        color: var(--accent);
        font-size: 2.2rem;
        padding-bottom: 10px;
    }

    .eyebrow {
        padding-bottom: 10px;
    }


    .hero-div {
        padding-left: 0;
        text-align: center;
    }

    .hero-content {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
        margin: 0 auto;
        text-align: center;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
    }

    .button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .button-group .button {
        width: 100%;
        max-width: 280px;
    }

    .footer-copyright {
        text-align: center;
    }

    .page-loader img {
        width: 190px;
    }
}

@media (max-width: 900px) {

    .hero-div {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .site-section.introduce {
        padding: 80px 24px;
    }

    .container-group {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .left-part {
        padding: 20px;
    }

    .section-title {
        font-size: clamp(2.4rem, 10vw, 4.2rem);
        margin: 10px 0;
    }

    .section-text {
        max-width: 620px;
        margin: 0 auto;
    }

    .right-part img {
        max-width: 320px;
        opacity: 0.25;
    }
}

@media (max-width: 500px) {
    .site-section.introduce {
        padding: 64px 18px;
    }

    .container-group {
        gap: 2rem;
    }

    .left-part {
        padding: 16px;
    }

    .left-part::before {
        background-size: 22px 22px;
    }

    .section-title {
        font-size: 2.6rem;
        line-height: 1.05;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .right-part img {
        max-width: 240px;
    }
}

@media (max-width: 1024px) {
    .site-section.conversation-section {
        padding: 90px 24px;
    }

    .eyebrow {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .site-section.conversation-section::after {
        width: 100%;
        opacity: 0.35;
    }

    .left-section {
        max-width: 720px;
        margin: 0;
    }

    .right-section {
        justify-content: flex-start;
    }

    .two-column-grid {
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .site-section.conversation-section {
        padding: 80px 18px 70px;
        clip-path: polygon(0 0,
                100% 3%,
                100% 100%,
                0 100%);
    }

    .eyebrow {
        gap: 2.5rem;
    }

    .section-title.conversation-title {
        font-size: 2.3rem;
        line-height: 1.1;
    }

    .section-intro.conversation-intro {
        padding-top: 18px;
        padding-bottom: 10px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .right-section {
        width: 100%;
    }

    .two-column-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        min-height: auto;
        padding: 1.2rem;
    }

    .info-card:nth-child(1),
    .info-card:nth-child(3) {
        margin: 0;
    }

    .info-card p {
        font-size: 0.85rem !important;
        line-height: 1.6;
    }
}

@media (max-width: 1100px) {
    .feedback-section {
        min-height: auto;
        padding: 100px 24px;
    }

    .feedback-layout {
        grid-template-columns: 420px 1fr;
        justify-content: center;
    }

    .section-heading.clients {
        width: 420px;
        height: 280px;
        margin: 0;
        font-size: 2.6rem;
    }

    .feedback-right {
        margin-left: -60px;
    }

    .feedback-track {
        height: 460px;
    }

    .feedback-card {
        width: 82%;
        padding: 40px;
    }

    .span-clients,
    .span-clients-upside {
        font-size: 14rem;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 90px 18px;
    }

    .feedback-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .feedback-left {
        z-index: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .section-heading.clients {
        width: min(100%, 360px);
        height: 220px;
        margin: 0;
        font-size: 2.1rem;
        justify-content: center;
    }

    .feedback-right {
        width: 100%;
        margin-left: 0;
        margin-top: -55px;
        z-index: 2;
    }

    .feedback-track {
        width: 100%;
        height: auto;
        min-height: 430px;
        padding: 90px 18px 40px;
    }

    .feedback-card {
        width: 100%;
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
    }

    .span-clients {
        font-size: 9rem;
        top: -45px;
    }

    .span-clients-upside {
        font-size: 9rem;
        bottom: -105px;
    }
}

@media (max-width: 480px) {
    .section-heading.clients {
        height: 190px;
        font-size: 1.8rem;
    }

    .feedback-track {
        min-height: 400px;
        padding: 80px 14px 32px;
    }

    .feedback-card {
        padding: 28px 20px;
    }

    .feedback-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .person-image {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* Services Section */


.services-section {
    min-height: 80vh;
    background-color: var(--bg-soft);
}

.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 2px;

    top: 20%;
    left: -200px;

    background: rgba(255, 255, 255, 0.08);

    transform: rotate(-12deg);
}

.services-section::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 2px;

    bottom: 25%;
    right: -150px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(8deg);
}

.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 2px;
    top: 20%;
    left: -200px;
    background: var(--accent-dark);
    transform: rotate(-24deg);
}

.services-section::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 2px;

    bottom: 25%;
    right: -50px;

    background: var(--accent-dark);

    transform: rotate(8deg);
}

.services-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.services-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.services-wave svg path {
    fill: var(--accent);
}

.services-h2 {
    position: relative;
    z-index: 10;

    color: var(--white);
    padding-top: 50px;
    font-size: 4.8rem;
    font-family: var(--font-heading);
    text-align: center;
}

.services-section::before,
.services-section::after {
    z-index: 1;
}

.services-h2,
.services-p,
.service-cards,
.button.nav-cta {
    position: relative;
    z-index: 2;
}

.black-span {
    color: var(--accent);
}

.service-card {
    min-height: 420px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-p {
    color: var(--white);
    font-family: var(--font-body);
    text-align: center;
    padding-top: 25px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 25px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 350px;
    margin-bottom: 50px;
    min-width: 250px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--accent);
}

.service-card p {
    color: var(--white);
    line-height: 1.7;
    font-family: var(--font-body);
    font-size: 1.2rem;
}

#contact-btn {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 75px;
    background-color: var(--accent);
}

#contact-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px) rotate(-1deg);
}

/* Footer Section */

.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-logo img {
    height: 150px;
}

.container.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-right {
    margin-top: 25px;
    width: 50%;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    text-align: center;
    background:
        linear-gradient(rgba(17, 17, 17, 0.82),
            rgba(17, 17, 17, 0.82)),
        url("./assets/conversation-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    box-shadow: #050505;
}

.footer-orange {
    color: var(--accent);
}

.footer-orange:hover {
    cursor: pointer;
}

.footer-split {
    font-size: 1.1rem;
}

.footer-split p {
    line-height: 25px;
    color: var(--white);
}

.footer-facebook {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-facebook ion-icon {
    color: var(--accent);
}

.footer-copyright {
    color: var(--white);
    font-size: 1rem;
    margin-top: 25px;
}

/* Tablet */
@media (max-width: 1024px) {
    .site-section.conversation-section {
        padding: 90px 24px;
    }

    .conversation-section .conversation-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        text-align: center;
    }

    .left-section {
        max-width: 720px;
        margin: 0 auto;
    }

    .section-title.conversation-title {
        font-size: 3.2rem;
    }

    .section-intro.conversation-intro br {
        display: none;
    }

    .right-section {
        justify-content: center;
    }

    .two-column-grid {
        max-width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .site-section.conversation-section {
        padding: 80px 18px;
        clip-path: none;
    }

    .conversation-section .conversation-layout {
        gap: 2.5rem;
    }

    .section-title.conversation-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .section-intro.conversation-intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .info-card {
        min-height: auto;
        padding: 1.3rem;
        margin: 2rem;

    }

    .info-card p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
}

/* Tablet */
@media (max-width: 1024px) {

    .services-section {
        padding: 80px 24px;
    }

    .services-h2 {
        font-size: 3.6rem;
    }

    .services-p {
        max-width: 650px;
        margin: 0 auto;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .service-card {
        margin-bottom: 0;
        height: auto;
        min-height: 280px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .services-section {
        padding: 70px 18px;
    }

    .services-h2 {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .services-p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-top: 15px;
        max-width: 35ch;
        margin: 0 auto;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
        padding: 0;
    }

    .service-card {
        min-height: auto;
        padding: 1.8rem;
    }

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

    .service-card p {
        font-size: 1rem;
    }

    .button-group {
        justify-content: center;
        margin-top: 2rem;
    }

    #contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Scroll Reveal */

.sr {
    opacity: 0;


    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sr-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .hero-logo img {
        width: 250px;
        height: auto;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero-div {
        width: 100%;
        max-width: 360px;
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.05;
    }

    .hero-text {
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-text br {
        display: none;
    }

    .button-group {
        width: 100%;
        align-items: center;
    }

    .button-group .button {
        width: 100%;
        max-width: 280px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-split {
        background-image: cover;
        width: 100%;
        gap: 25px;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        border-radius: 0px;
    }

    .container.footer-content {
        background-size: cover;
    }
}


@media (min-width: 769px) and (max-width: 900px) {
    .hero-div {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-text {
        max-width: 40ch;
    }

    .nav-links a:hover {
        color: var(--accent) !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 4rem 0 5rem;
        background-image: url("./assets/mobile-background.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .footer-logo img {
        height: 100px;
    }

    .hero-div {
        padding-left: 0;
        padding-right: 0;
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-logo img {
        width: 180px;
        max-width: 80%;
        height: auto;
        margin: 0 auto 1rem;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.05;
    }

    .hero-text br {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        background-size: cover;
        background-position: center;
    }

    .hero-div {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .hero-logo img {
        width: 240px;
    }

    .hero-title {
        font-size: 3.4rem;
    }
}