/* ============================================================
   DESIGN SYSTEM
============================================================ */

:root {

    --orange: #ea490c;
    --orange-dark: #d83f08;

    --black: #181818;
    --gray: #687280;
    --light-gray: #f5f7fa;
    --border: #e2e7ec;
    --white: #ffffff;

    --page-bg: #eef3f7;

    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-headline: "Antonio", "Barlow Condensed", sans-serif;
    --font-display: "Space Grotesk", "Inter", sans-serif;

    --radius: 10px;

    --page-padding: 26px;

}


/* ============================================================
   RESET
============================================================ */

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


html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}


body {
    background: var(--white);
    color: var(--black);

    font-family: var(--font-body);
    font-size: 15px;

    -webkit-font-smoothing: antialiased;

    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


/* ============================================================
   SITE SHELL
============================================================ */

.site-shell {

    width: 100%;

    max-width: 100%;

    margin: 0;

    padding: 0;

    background: var(--white);

    border: none;

    outline: none;

    border-radius: 0;

    overflow-x: hidden;

    box-shadow: none;
}


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

.hero {

    position: relative;

    height: 100vh;
    height: 100dvh;

    max-height: 100vh;
    max-height: 100dvh;

    overflow: hidden;

    isolation: isolate;

    background-color: var(--white);

    background-image:
        linear-gradient(
            to right,
            transparent 0%,
            transparent 50%,
            var(--white) 50%,
            var(--white) 100%
        ),
        url("../assets/orange.png");

    background-size: 100% 100%, cover;

    background-position: left top, center center;

    background-repeat: no-repeat, no-repeat;
}


.hero::before {
    display: none;
}


/* ============================================================
   DECORATIVE SHAPES
============================================================ */

.hero-decorations {
    display: none;
}

.hero-bottom-curve {
    display: none;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {

    position: relative;

    height: clamp(64px, 8vh, 84px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 clamp(24px, 5.8vw, 88px);

    z-index: 20;
}


.brand {

    color: var(--white);

    font-size: clamp(14px, 1.05vw, 16.5px);

    font-weight: 500;

    letter-spacing: 0.01em;

    white-space: nowrap;
}


.brand span {
    margin-inline: 6px;
    opacity: 0.85;
}


/* ============================================================
   DESKTOP NAV
============================================================ */

.desktop-nav {

    height: 100%;

    display: flex;

    align-items: center;

    gap: clamp(20px, 2.5vw, 42px);

    margin-left: auto;

    margin-right: clamp(18px, 2.2vw, 36px);
}


.desktop-nav a {

    color: #181818;

    font-size: clamp(13px, 0.98vw, 15px);

    font-weight: 700;

    letter-spacing: 0.04em;

    transition: opacity 0.2s ease;
}


.desktop-nav a:hover {
    opacity: 0.6;
}


/* ============================================================
   MENU BUTTON
============================================================ */

.menu-button {

    display: none;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: #f2f2f2;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3.5px;

    cursor: pointer;

    position: relative;

    z-index: 30;

    transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-button:hover {
    background: #e6e6e6;
}


.menu-button span {

    width: 17px;
    height: 2px;

    background: #181818;

    border-radius: 1px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


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

.mobile-menu {

    position: absolute;

    top: 75px;
    right: 15px;

    width: 225px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    gap: 21px;

    background: var(--white);

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 25;
}


.mobile-menu.open {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.mobile-menu a {

    font-size: 13.75px;

    font-weight: 700;
}


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

.hero-copy {

    position: absolute;

    z-index: 10;

    left: clamp(24px, 5.8vw, 88px);

    top: 26.5%;

    width: auto;

    max-width: 50%;

    color: var(--white);
}


.hero-eyebrow {
    display: none;
}


.hero-copy h1,
.hero-title {

    margin-bottom: clamp(32px, 4.8vh, 64px);

    font-family: var(--font-headline);

    font-size: clamp(62px, min(6.36vw, 9.84vh), 91px);

    font-weight: 700;

    line-height: 0.93;

    letter-spacing: -0.015em;

    color: var(--white);

    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.14);
}


.title-line {
    display: block;
    white-space: nowrap;
}


.hero-description {

    max-width: 520px;

    margin-bottom: clamp(96px, 12vh, 156px);

    font-family: var(--font-body);

    font-size: clamp(15.6px, min(1.32vw, 2.16vh), 19.2px);

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.98);

    font-weight: 400;
}


.desc-line {
    display: inline;
}


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

.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    width: clamp(180px, 15vw, 230px);

    height: clamp(46px, 5.5vh, 58px);

    border-radius: 9999px;

    background: var(--white);

    color: var(--orange);

    font-family: var(--font-body);

    font-size: clamp(12.5px, 0.95vw, 14.5px);

    font-weight: 700;

    letter-spacing: 0.06em;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.primary-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.14);
}


.primary-button span {
    font-size: 1.25em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.primary-button:hover span {
    transform: translateX(3px);
}


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

.hero-person {

    position: absolute;

    z-index: 6;

    left: 50%;

    transform: translateX(-50%);

    bottom: 0;

    height: 100%;

    max-height: 100%;

    width: auto;

    pointer-events: none;
}


.hero-person img {

    height: 100%;

    width: auto;

    max-width: none;

    object-fit: contain;

    object-position: bottom center;
}


/* ============================================================
   TRUSTED TEXT
============================================================ */

.trusted-text {

    position: absolute;

    z-index: 10;

    left: clamp(24px, 5.8vw, 88px);

    bottom: clamp(16px, 3vh, 36px);

    color: var(--white);

    font-family: var(--font-body);

    font-size: clamp(12px, min(0.95vw, 1.6vh), 14.5px);

    font-weight: 400;

    letter-spacing: 0.01em;
}


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

.client-projects {

    position: absolute;

    z-index: 10;

    left: 74.2%;

    top: clamp(240px, 38vh, 440px);

    color: var(--black);
}


.client-projects p {

    margin-bottom: clamp(4px, 1vh, 8px);

    color: var(--orange);

    font-family: var(--font-body);

    font-size: clamp(14.375px, 1.1vw, 16.875px);

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.client-projects p span {
    margin-left: 4px;
}


.client-projects h2 {

    font-family: var(--font-body);

    font-size: clamp(40px, min(5vw, 6.875vh), 70px);

    line-height: 0.95;

    letter-spacing: -0.035em;

    font-weight: 700;

    color: #181818;
}


/* ============================================================
   TESTIMONIAL
============================================================ */

.testimonial {

    position: absolute;

    z-index: 12;

    right: clamp(24px, 5.8vw, 88px);

    bottom: clamp(18px, 3.5vh, 48px);

    width: clamp(280px, 23vw, 360px);

    min-height: auto;

    padding: clamp(14px, 1.8vh, 22px) clamp(18px, 1.6vw, 26px);

    border: 1px solid rgba(0, 0, 0, 0.03);

    border-radius: 20px;

    background: #f6f6f6;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}


.quote-mark {

    color: var(--orange);

    font-family: Georgia, serif;

    font-size: clamp(28px, 2.4vw, 38px);

    font-weight: 700;

    line-height: 0.65;

    margin-bottom: clamp(6px, 1vh, 10px);
}


.testimonial-text {

    max-width: 100%;

    margin-bottom: clamp(10px, 1.5vh, 16px);

    font-family: var(--font-body);

    font-size: clamp(12.5px, min(0.95vw, 1.6vh), 15px);

    line-height: 1.44;

    color: #1c1c1c;

    font-weight: 400;
}


.testimonial-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
}


.testimonial-footer strong {

    display: block;

    font-size: clamp(11.5px, 0.88vw, 13.5px);

    font-weight: 700;

    color: #181818;

    letter-spacing: 0.02em;

    line-height: 1.2;
}


.testimonial-footer small {

    display: block;

    margin-top: 3px;

    color: #8c9298;

    font-size: clamp(9.5px, 0.72vw, 11px);

    font-weight: 500;

    letter-spacing: 0.03em;
}


.testimonial-icon {

    width: clamp(40px, 3.2vw, 50px);
    height: clamp(40px, 3.2vw, 50px);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: transparent;

    border: none;

    flex-shrink: 0;
    overflow: hidden;
}

.hakika-badge {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


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

.services-section,
.work-section {

    padding: clamp(32px, 3.5vw, 54px) clamp(20px, 3vw, 50px);
}


/* ============================================================
   SECTION LABEL
============================================================ */

.section-label {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 6px;

    color: var(--orange);

    font-size: 11.25px;

    font-weight: 700;
}


.services-section .section-label,
.work-section .section-label {
    font-size: 16.875px;
}


.section-label i {

    display: block;

    width: 71px;

    height: 1px;

    background: var(--orange);
}


/* ============================================================
   SERVICES (REDESIGNED FROM SCREENSHOT)
============================================================ */

.services-section {
    display: grid;
    grid-template-columns: minmax(280px, 1.15fr) 3fr;
    gap: clamp(28px, 3.5vw, 54px);
    align-items: start;
    padding: clamp(64px, 7vh, 96px) clamp(24px, 5.8vw, 88px);
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    position: relative;
    width: 100%;
}

/* --- Intro Column --- */
.services-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 9999px;
    background: #ffefe8;
    color: #ea490c;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.services-badge-line {
    display: block;
    width: 58px;
    height: 3px;
    border-radius: 2px;
    background: #ea490c;
}

.services-title {
    font-family: var(--font-body);
    font-size: clamp(42px, 4.4vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #0c152e;
    margin-bottom: 22px;
}

.services-title-accent {
    color: #ea490c;
}

.services-description {
    color: #556274;
    font-family: var(--font-body);
    font-size: clamp(15.5px, 1.15vw, 17.5px);
    line-height: 1.62;
    max-width: 440px;
    margin-bottom: 30px;
}

.services-bottom-bar {
    width: 44px;
    height: 3.5px;
    border-radius: 2px;
    background: #ea490c;
}

/* --- Services 3-Card Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 1.8vw, 24px);
    align-items: stretch;
}

/* --- Individual Service Card --- */
.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(12, 21, 46, 0.05);
    border-radius: 24px;
    padding: 38px 28px 46px 28px;
    box-shadow: 0 14px 38px -6px rgba(12, 21, 46, 0.07), 0 4px 12px -2px rgba(12, 21, 46, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px -8px rgba(12, 21, 46, 0.11), 0 8px 18px -3px rgba(12, 21, 46, 0.05);
}

/* Ensure all textual and icon content sits above the corner decorative circle */
.service-icon-box,
.service-card-title,
.service-card-accent,
.service-card-text {
    position: relative;
    z-index: 2;
}

/* --- Card Icon Containers --- */
.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.service-icon-box--orange {
    background: #fdede4;
}

.service-icon-box--blue {
    background: #e1edfe;
}

.service-icon-box--green {
    background: #e4f6e8;
}

/* --- Card Titles --- */
.service-card-title {
    font-family: var(--font-body);
    font-size: clamp(20px, 1.45vw, 23px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0c152e;
    margin-bottom: 12px;
}

/* --- Card Orange Accent Bar --- */
.service-card-accent {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: #ea490c;
    margin-bottom: 18px;
}

/* --- Card Body Text --- */
.service-card-text {
    font-family: var(--font-body);
    color: #556274;
    font-size: clamp(14px, 0.98vw, 15.5px);
    line-height: 1.6;
    max-width: 270px;
}

/* --- Corner Decorative Glow / Accent --- */
.service-corner-glow {
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.service-corner-glow--peach {
    background: #feece3;
}

.service-corner-glow--blue {
    background: #e3effd;
}

.service-corner-glow--green {
    background: #e7f7eb;
}

/* Section heading for work/about sections */
.section-heading h2 {
    font-family: var(--font-display);
    font-size: 50.625px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
}


/* ============================================================
   WORK SECTION
============================================================ */

.work-section {
    border-top: 1px solid #edf2f7;
    padding: clamp(48px, 5.5vw, 76px) clamp(24px, 4.5vw, 60px);
}

.work-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 3.5vw, 44px);
}

.work-header-text {
    max-width: 680px;
}

.work-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.work-badge-label {
    color: var(--orange);
    font-family: var(--font-body);
    font-size: clamp(12.5px, 0.95vw, 14px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-badge-line {
    display: inline-block;
    width: 44px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.work-title {
    font-family: var(--font-body);
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #111827;
    margin: 0 0 12px 0;
}

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

.work-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14.5px, 1.05vw, 16px);
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

.work-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 14px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.work-view-all:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.work-view-all-arrow {
    display: inline-block;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.work-view-all:hover .work-view-all-arrow {
    transform: translateX(4px);
}

/* -----------------------------------------
   PROJECTS GRID & CARDS
----------------------------------------- */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.2vw, 30px);
    align-items: stretch;
}

.project-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f3f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.project-card-image {
    width: 100%;
    height: clamp(190px, 15vw, 240px);
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-image img {
    transform: scale(1.04);
}

.project-card-body {
    padding: clamp(20px, 1.8vw, 26px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.project-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4.5px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.project-pill svg {
    flex-shrink: 0;
}

.project-pill--green {
    background: #eaf7ee;
    color: #166534;
}

.project-pill--blue {
    background: #eef5ff;
    color: #1d4ed8;
}

.project-pill--orange {
    background: #fff3ec;
    color: #c2410c;
}

.project-index {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.04em;
}

.project-card-title {
    font-family: var(--font-body);
    font-size: clamp(19px, 1.4vw, 22px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.project-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 20px 0;
    flex: 1;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    align-self: flex-start;
}

.project-card-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.project-link-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.project-card-link:hover .project-link-arrow {
    transform: translateX(4px);
}


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

.about-section {
    border-top: 1px solid #edf2f7;
    background: #ffffff;
    padding: clamp(54px, 6vw, 84px) clamp(24px, 4.5vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: clamp(32px, 4vw, 68px);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 580px;
    z-index: 2;
}

.about-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(14px, 1.5vw, 20px);
}

.about-badge-label {
    color: var(--orange);
    font-family: var(--font-body);
    font-size: clamp(12.5px, 0.95vw, 14px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-badge-line {
    display: inline-block;
    width: 44px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.about-title {
    font-family: var(--font-body);
    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #111827;
    margin: 0 0 clamp(16px, 1.8vw, 24px) 0;
}

.about-title-dot {
    color: var(--orange);
}

.about-description {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.08vw, 16.5px);
    line-height: 1.62;
    color: #64748b;
    margin: 0 0 clamp(24px, 2.5vw, 36px) 0;
    max-width: 490px;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(234, 73, 12, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(234, 73, 12, 0.36);
    opacity: 0.95;
}

.about-btn-arrow {
    display: inline-block;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.about-cta-btn:hover .about-btn-arrow {
    transform: translateX(4px);
}

/* -----------------------------------------
   ABOUT VISUAL / RIGHT COLUMN
----------------------------------------- */

.about-right {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Subtle dot matrix */
.about-deco-dots {
    position: absolute;
    top: 10px;
    right: 32px;
    display: grid;
    grid-template-columns: repeat(5, 5px);
    gap: 16px;
    z-index: 1;
    pointer-events: none;
}

.about-deco-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    opacity: 0.6;
    display: block;
}

/* Peach circular background */
.about-circle-bg {
    position: absolute;
    width: clamp(340px, 30vw, 440px);
    height: clamp(340px, 30vw, 440px);
    border-radius: 50%;
    background: #feece3;
    z-index: 1;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Delicate circular outline */
.about-circle-ring {
    position: absolute;
    width: clamp(400px, 36vw, 510px);
    height: clamp(400px, 36vw, 510px);
    border-radius: 50%;
    border: 1px solid #f6d8ca;
    z-index: 1;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Portrait photo container */
.about-person-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-person-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.08));
}

/* Floating feature cards */
.about-float-card {
    position: absolute;
    z-index: 5;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(241, 245, 249, 0.95);
    width: clamp(170px, 15vw, 210px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.about-float-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.11);
}

.about-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.about-card-icon--purple {
    background: #f0edff;
}

.about-card-icon--teal {
    background: #e2f9ee;
}

.about-card-icon--orange {
    background: #ffefe6;
}

.about-card-title {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 5px 0;
    line-height: 1.25;
}

.about-card-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
}

/* Precise card coordinates */
.about-float-card--dev {
    top: 20px;
    left: 4%;
}

.about-float-card--design {
    bottom: 40px;
    left: 0%;
}

.about-float-card--business {
    top: 36%;
    right: -10px;
}


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

.contact-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    padding: clamp(60px, 6.8vw, 96px) clamp(24px, 4.5vw, 60px);
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(14px, 1.5vw, 20px);
}

.contact-badge-label {
    color: var(--orange);
    font-family: var(--font-body);
    font-size: clamp(12.5px, 0.95vw, 14px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-badge-line {
    display: inline-block;
    width: 44px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.contact-title {
    font-family: var(--font-body);
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #111827;
    margin: 0 0 clamp(16px, 1.8vw, 24px) 0;
}

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

.contact-description {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.1vw, 16.5px);
    line-height: 1.62;
    color: #64748b;
    margin: 0 0 clamp(28px, 3vw, 38px) 0;
    max-width: 540px;
}

.contact-cta-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ea490c 0%, #d83f08 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 15px 34px;
    border-radius: 9999px;
    border: none;
    outline: none;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(234, 73, 12, 0.32);
    margin-bottom: clamp(48px, 5.5vw, 72px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(234, 73, 12, 0.42);
    filter: brightness(1.04);
}

.contact-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(234, 73, 12, 0.28);
}

.contact-cta-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(234, 73, 12, 0.35), 0 8px 24px rgba(234, 73, 12, 0.32);
}

.contact-btn-arrow {
    display: inline-block;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.contact-cta-btn:hover .contact-btn-arrow {
    transform: translateX(4px);
}

.contact-cta-btn .whatsapp-btn-icon {
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-cta-btn:hover .whatsapp-btn-icon {
    transform: scale(1.12);
}

/* Perks Row */
.contact-perks {
    display: inline-flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 36px);
    flex-wrap: wrap;
}

.contact-perk {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-perk-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #feece3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-perk-text {
    display: flex;
    flex-direction: column;
}

.contact-perk-title {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 2px;
}

.contact-perk-subtitle {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.35;
}

.contact-perk-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
}

/* Decorative Background Elements */
.contact-deco-dots {
    position: absolute;
    top: clamp(34px, 4.5vw, 60px);
    right: clamp(220px, 24vw, 380px);
    display: grid;
    grid-template-columns: repeat(6, 5px);
    gap: 16px;
    z-index: 1;
    pointer-events: none;
}

.contact-deco-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ea490c;
    opacity: 0.85;
    display: block;
}

.contact-circle-bg {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(440px, 46vw, 660px);
    height: clamp(440px, 46vw, 660px);
    border-radius: 50%;
    background: #feece3;
    z-index: 1;
    pointer-events: none;
}

.contact-arc-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(280px, 30vw, 440px);
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


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

.footer {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 clamp(20px, 3vw, 50px);

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

    color: var(--gray);

    font-size: 10px;
}


/* ============================================================
   TABLET
   768px - 1023px
============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {

    :root {
        --page-padding: 14px;
    }


    .site-shell {

        width: 100%;

        max-width: 100%;

        margin: 0;

        border: none;

        outline: none;

        border-radius: 0;

        box-shadow: none;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .hero {

        height: clamp(560px, 62vw, 680px);

        background-color: var(--white);

        background-image:
            linear-gradient(
                to right,
                transparent 0%,
                transparent 50%,
                var(--white) 50%,
                var(--white) 100%
            ),
            url("../assets/orange.png");

        background-size: 100% 100%, cover;

        background-position: left top, center center;

        background-repeat: no-repeat, no-repeat;
    }


    .hero::before {
        display: none;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .site-header {

        height: 80px;

        padding: 0 24px;
    }


    .desktop-nav {
        display: flex;
        align-items: center;
        gap: clamp(14px, 2.2vw, 32px);
        margin-left: auto;
        margin-right: clamp(4px, 1.5vw, 18px);
    }


    .desktop-nav a {
        color: #181818;
        font-size: clamp(12px, 1.4vw, 14px);
        font-weight: 700;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }


    .brand {
        font-size: clamp(12px, 1.6vw, 14px);
        white-space: nowrap;
    }


    .menu-button {
        display: none;
    }


    /* -----------------------------------------
       HERO COPY
    ----------------------------------------- */

    .hero-copy {

        left: clamp(20px, 3.2vw, 32px);

        top: 26.5%;

        width: auto;

        max-width: 48%;
    }


    .hero-copy h1,
    .hero-title {

        max-width: none;

        font-family: var(--font-headline);

        font-size: clamp(32px, 4.3vw, 48px);

        line-height: .92;

        letter-spacing: -0.015em;

        margin-bottom: 32px;

        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.14);
    }


    .hero-description {

        max-width: 350px;

        font-size: 13.5px;

        line-height: 1.45;

        margin-bottom: 88px;
    }


    .primary-button {

        min-height: 48px;

        padding-inline: 22px;

        font-size: 12.5px;
    }


    /* -----------------------------------------
       PERSON
    ----------------------------------------- */

    .hero-person {

        height: 100%;

        width: auto;

        left: 50%;

        transform: translateX(-50%);

        bottom: 0;
    }


    /* -----------------------------------------
       CLIENT PROJECTS
    ----------------------------------------- */

    .client-projects {

        top: clamp(140px, 18vw, 200px);

        left: 74%;

        right: auto;
    }


    .client-projects p {
        font-size: 12px;
    }


    .client-projects h2 {

        font-size: clamp(30px, 4vw, 42px);
    }


    /* -----------------------------------------
       TESTIMONIAL
    ----------------------------------------- */

    .testimonial {

        right: 20px;

        bottom: 20px;

        width: clamp(230px, 28vw, 300px);

        min-height: 130px;

        padding: 16px 18px;
    }


    .testimonial-text {

        max-width: 100%;

        font-size: 12.5px;
    }


    .testimonial-footer strong {
        font-size: 11px;
    }


    .testimonial-footer small {
        font-size: 9.5px;
    }


    .testimonial-icon {

        width: 36px;
        height: 36px;
    }


    .trusted-text {

        left: 24px;

        bottom: 24px;

        font-size: 12.5px;
    }


    /* -----------------------------------------
       SERVICES
    ----------------------------------------- */

    .services-section {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding: 48px clamp(20px, 3.5vw, 36px);
    }

    .work-section {
        padding: 25px 20px;
    }

    .services-intro {
        max-width: 600px;
    }

    .services-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .services-description {
        font-size: 15.5px;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .section-heading h2 {
        font-size: 39.375px;
    }

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

    .service-card {
        min-height: unset;
        padding: 28px 20px 36px 20px;
        border-radius: 20px;
    }

    .service-icon-box {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .service-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card-accent {
        width: 28px;
        margin-bottom: 14px;
    }

    .service-card-text {
        font-size: 13.5px;
        line-height: 1.5;
        max-width: 100%;
    }


    .projects-grid {
        gap: 16px;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-card-image {
        height: 155px;
    }

    .project-card-body {
        padding: 16px 14px 20px 14px;
    }

    .project-card-title {
        font-size: 17px;
    }

    .project-card-desc {
        font-size: 13px;
        margin-bottom: 14px;
    }

    /* -----------------------------------------
       ABOUT (TABLET)
    ----------------------------------------- */
    .about-section {
        padding: 48px clamp(20px, 3.5vw, 36px);
        gap: 28px;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .about-right {
        min-height: 440px;
    }

    .about-person-img {
        max-height: 420px;
    }

    .about-circle-bg {
        width: 320px;
        height: 320px;
    }

    .about-circle-ring {
        width: 370px;
        height: 370px;
    }

    .about-float-card {
        width: 155px;
        padding: 14px 14px;
        border-radius: 16px;
    }

    .about-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .about-card-title {
        font-size: 14px;
    }

    .about-card-desc {
        font-size: 11.5px;
    }

    .about-float-card--dev {
        top: 10px;
        left: 0%;
    }

    .about-float-card--design {
        bottom: 24px;
        left: -6px;
    }

    .about-float-card--business {
        top: 32%;
        right: -8px;
    }

    /* -----------------------------------------
       CONTACT (TABLET)
    ----------------------------------------- */
    .contact-section {
        padding: 48px clamp(20px, 3.5vw, 36px);
    }

    .contact-title {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .contact-cta-btn {
        margin-bottom: 44px;
    }

    .contact-deco-dots {
        right: 180px;
        gap: 12px;
    }

}


/* ============================================================
   MOBILE
   0 - 767px
============================================================ */

@media (max-width: 767px) {

    :root {
        --page-padding: 8px;
    }


    /* -----------------------------------------
       SITE SHELL
    ----------------------------------------- */

    .site-shell {

        width: 100%;

        max-width: 100%;

        margin: 0;

        border: none;

        outline: none;

        border-radius: 0;

        box-shadow: none;
    }


    /* -----------------------------------------
       HERO (MOBILE SPECIFIC CANVAS)
    ----------------------------------------- */

    .hero {
        position: relative;
        min-height: 670px;
        height: clamp(660px, 94vh, 740px);
        overflow: hidden;
        padding-bottom: 0;
        background-color: #ea490c;
        background-image:
            radial-gradient(ellipse at 88% 36%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
            radial-gradient(ellipse at 15% 70%, rgba(0, 0, 0, 0.08) 0%, transparent 60%),
            url("../assets/orange.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-radius: 0;
    }


    .hero::before {
        display: none;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .site-header {
        height: 60px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 20;
    }


    .brand {
        font-family: var(--font-body);
        font-size: 13.5px;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: -0.01em;
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        white-space: nowrap;
    }


    .brand span {
        margin: 0;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
    }


    .desktop-nav {
        display: none;
    }


    .menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(4px);
        cursor: pointer;
        padding: 0;
        transition: all 0.2s ease;
    }


    .menu-button span {
        display: block;
        width: 18px;
        height: 2px;
        background: #ffffff;
        border-radius: 1px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }


    /* -----------------------------------------
       HERO COPY
    ----------------------------------------- */

    .hero-copy {
        position: relative;
        left: 0;
        top: 0;
        padding: 18px 18px 0 18px;
        width: 100%;
        z-index: 10;
        color: #ffffff;
    }


    .hero-eyebrow {
        display: none;
    }


    .hero-copy h1,
    .hero-title {
        width: 100%;
        max-width: 100%;
        margin: 0 0 14px 0;
        font-family: var(--font-headline);
        font-size: clamp(34px, 8.8vw, 42px);
        font-weight: 700;
        line-height: 0.95;
        letter-spacing: -0.015em;
        color: #ffffff;
        text-shadow: none;
    }


    .title-line {
        display: block;
        white-space: nowrap;
    }


    .hero-description {
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px 0;
        font-family: var(--font-body);
        font-size: clamp(11.2px, 3.15vw, 12.8px);
        line-height: 1.46;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
    }


    .desc-line {
        display: block;
        white-space: nowrap;
    }


    .primary-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 42px;
        min-height: 42px;
        width: auto;
        padding: 0 22px;
        border-radius: 9999px;
        background: #ffffff;
        color: #ea490c;
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }


    .primary-button span {
        font-size: 15px;
        line-height: 1;
        color: #ea490c;
    }


    /* -----------------------------------------
       PERSON
    ----------------------------------------- */

    .hero-person {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-48%);
        width: clamp(330px, 92vw, 410px);
        max-width: 420px;
        height: auto;
        max-height: 510px;
        margin: 0;
        z-index: 5;
        pointer-events: none;
    }


    .hero-person img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: bottom center;
    }


    /* -----------------------------------------
       TRUSTED TEXT
    ----------------------------------------- */

    .trusted-text {
        position: absolute;
        left: 18px;
        bottom: 44px;
        width: 85px;
        margin: 0;
        padding: 0;
        font-family: var(--font-body);
        font-size: 11px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
        z-index: 8;
        letter-spacing: 0.01em;
    }


    /* -----------------------------------------
       CLIENT PROJECTS
    ----------------------------------------- */

    .client-projects,
    section#home .client-projects {
        position: absolute;
        top: auto !important;
        left: auto !important;
        right: 0 !important;
        bottom: 132px !important;
        width: clamp(140px, 42vw, 172px);
        margin: 0;
        padding: 14px 22px 28px 18px;
        background: #ffffff;
        border-radius: 20px 0 0 0;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
        z-index: 11;
    }


    .client-projects p,
    section#home .client-projects p {
        margin: 0 0 3px 0;
        color: #ea490c;
        font-family: var(--font-body);
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 3px;
        white-space: nowrap;
    }


    .client-projects p span {
        margin-left: 2px;
        font-size: 11px;
    }


    .client-projects h2,
    section#home .client-projects h2 {
        font-family: var(--font-body);
        font-size: clamp(20px, 5.5vw, 24px);
        line-height: 1.0;
        letter-spacing: -0.025em;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
        white-space: normal;
    }


    /* -----------------------------------------
       TESTIMONIAL
    ----------------------------------------- */

    .testimonial {
        position: absolute;
        right: 14px;
        bottom: 14px;
        width: clamp(235px, 68vw, 290px);
        margin: 0;
        padding: 14px 16px;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
        border: none;
        z-index: 12;
    }


    .quote-mark {
        color: #ea490c;
        font-family: Georgia, serif;
        font-size: 26px;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 4px;
    }


    .testimonial-text {
        max-width: 100%;
        margin: 0 0 10px 0;
        font-size: 11.5px;
        line-height: 1.42;
        color: #1e293b;
        font-weight: 500;
    }


    .testimonial-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }


    .testimonial-footer strong {
        display: block;
        font-size: 10px;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: 0.02em;
    }


    .testimonial-footer small {
        display: block;
        font-size: 8.5px;
        color: #64748b;
        font-weight: 600;
        letter-spacing: 0.04em;
        margin-top: 2px;
    }


    .testimonial-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .hakika-badge {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    /* -----------------------------------------
       HERO BOTTOM ORGANIC CURVE
    ----------------------------------------- */

    .hero-bottom-curve {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 48px;
        z-index: 3;
        pointer-events: none;
    }


    .hero-bottom-curve svg {
        width: 100%;
        height: 100%;
        display: block;
    }


    /* -----------------------------------------
       DECORATIONS
    ----------------------------------------- */

    .hero-decorations {
        display: block;
    }


    .shape-circle {
        display: block;
        position: absolute;
        right: -25%;
        top: 22%;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        pointer-events: none;
        z-index: 2;
    }


    .shape-circle-small {
        display: block;
        position: absolute;
        left: -20%;
        bottom: 25%;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
        pointer-events: none;
        z-index: 2;
    }


    .shape-diagonal,
    .shape-glow {
        display: none;
    }


    /* -----------------------------------------
       GENERAL SECTIONS
    ----------------------------------------- */

    .services-section,
    .work-section {

        padding:
            25px 12px;
    }


    /* -----------------------------------------
       SERVICES
    ----------------------------------------- */

    .services-section {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 38px 16px;
    }

    .services-intro {
        width: 100%;
    }

    .services-badge-row {
        gap: 12px;
        margin-bottom: 16px;
    }

    .services-badge {
        font-size: 11.5px;
        padding: 6px 14px;
    }

    .services-badge-line {
        width: 42px;
    }

    .services-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .services-description {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .services-bottom-bar {
        width: 38px;
    }

    .section-heading h2 {
        font-size: 37.5px;
        margin-bottom: 9px;
    }

    /* -----------------------------------------
       MOBILE SERVICE LIST
    ----------------------------------------- */

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .service-card {
        width: 100%;
        min-height: unset;
        padding: 30px 22px 38px 22px;
        border-radius: 20px;
    }

    .service-icon-box {
        width: 54px;
        height: 54px;
        margin-bottom: 22px;
        border-radius: 14px;
    }

    .service-card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-card-accent {
        width: 30px;
        margin-bottom: 14px;
    }

    .service-card-text {
        font-size: 14.5px;
        line-height: 1.55;
        max-width: 100%;
    }


    /* -----------------------------------------
       FEATURED WORK
    ----------------------------------------- */

    .work-section {
        padding: 38px 16px;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
    }

    .work-badge-row {
        gap: 12px;
        margin-bottom: 10px;
    }

    .work-badge-label {
        font-size: 12px;
    }

    .work-badge-line {
        width: 38px;
    }

    .work-title {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .work-subtitle {
        font-size: 14.5px;
        line-height: 1.5;
    }

    .work-view-all {
        margin-top: 6px;
        font-size: 14.5px;
    }

    .projects-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .project-card {
        width: 100%;
        border-radius: 18px;
    }

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

    .project-card-body {
        padding: 20px 18px 22px 18px;
    }

    .project-card-title {
        font-size: 19px;
    }

    .project-card-desc {
        font-size: 13.5px;
        margin-bottom: 16px;
    }

    .project-card-link {
        font-size: 14px;
    }


    /* -----------------------------------------
       ABOUT
    ----------------------------------------- */

    .about-section {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding: 38px 16px;
    }

    .about-left {
        max-width: 100%;
    }

    .about-badge-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .about-badge-label {
        font-size: 12px;
    }

    .about-badge-line {
        width: 38px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .about-description {
        font-size: 14.5px;
        line-height: 1.55;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .about-cta-btn {
        font-size: 14.5px;
        padding: 12px 24px;
    }

    .about-right {
        min-height: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .about-person-wrap {
        position: relative;
        max-width: 290px;
        margin-bottom: 14px;
    }

    .about-person-img {
        max-height: 330px;
    }

    .about-circle-bg {
        width: 260px;
        height: 260px;
        top: 38%;
        left: 50%;
    }

    .about-circle-ring {
        width: 300px;
        height: 300px;
        top: 38%;
        left: 50%;
    }

    .about-deco-dots {
        display: none;
    }

    .about-float-card {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 16px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .about-card-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .about-card-title {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .about-card-desc {
        font-size: 12.5px;
    }


    /* -----------------------------------------
       CONTACT (MOBILE)
    ----------------------------------------- */
    .contact-section {
        padding: 38px 16px;
    }

    .contact-content {
        max-width: 100%;
    }

    .contact-badge-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .contact-badge-label {
        font-size: 12px;
    }

    .contact-badge-line {
        width: 38px;
    }

    .contact-title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .contact-description {
        font-size: 14.5px;
        line-height: 1.55;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .contact-cta-btn {
        font-size: 14.5px;
        padding: 12px 28px;
        margin-bottom: 34px;
    }

    .contact-perks {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .contact-perk-divider {
        display: none;
    }

    .contact-perk {
        width: 100%;
    }

    .contact-deco-dots {
        display: none;
    }

    .contact-circle-bg {
        width: 240px;
        height: 240px;
        right: -90px;
        opacity: 0.5;
    }

    .contact-arc-svg {
        width: 180px;
        opacity: 0.3;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .footer {

        min-height: 69px;

        padding:
            0 12px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 5px;

        font-size: 7.5px;
    }

}


/* ============================================================
   CONTACT / WHATSAPP MODAL
============================================================ */

body.modal-open {
    overflow: hidden !important;
    touch-action: none;
}

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}

.contact-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.contact-modal-dialog {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    padding: 36px 32px 30px;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.open .contact-modal-dialog {
    transform: translateY(0) scale(1);
}

/* Close button */
.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
    z-index: 5;
}

.contact-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.05);
}

.contact-modal-close:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Header */
.contact-modal-header {
    margin-bottom: 20px;
    padding-right: 28px;
}

.contact-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 11px;
    border-radius: 9999px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-modal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    display: inline-block;
}

.contact-modal-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-modal-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.contact-modal-subtitle strong {
    color: #0f172a;
}

/* Form inputs */
.contact-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.modal-form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.01em;
}

.required-star {
    color: var(--orange);
}

.modal-form-input,
.modal-form-select,
.modal-form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #0f172a;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form-input {
    height: 44px;
}

.modal-form-select {
    height: 44px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
}

.modal-form-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

.modal-form-input:focus,
.modal-form-select:focus,
.modal-form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(234, 73, 12, 0.15);
}

.modal-form-input::placeholder,
.modal-form-textarea::placeholder {
    color: #94a3b8;
}

.modal-form-error {
    display: none;
    font-size: 11.5px;
    color: #dc2626;
    font-weight: 500;
    margin-top: 2px;
}

.modal-form-group.has-error .modal-form-input,
.modal-form-group.has-error .modal-form-textarea {
    border-color: #dc2626;
    background: #fef2f2;
}

.modal-form-group.has-error .modal-form-error {
    display: block;
}

/* Submit Button (Orange Get In Touch Button) */
.modal-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ea490c 0%, #d83f08 100%);
    color: #ffffff;
    border: none;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(234, 73, 12, 0.32);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    margin-top: 6px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 73, 12, 0.42);
    filter: brightness(1.04);
}

.modal-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(234, 73, 12, 0.28);
}

.modal-btn-arrow {
    font-size: 1.15em;
    transition: transform 0.2s ease;
}

.modal-submit-btn:hover .modal-btn-arrow {
    transform: translateX(4px);
}

/* Success view */
.contact-modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 8px 10px;
}

.success-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffedd5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 0 8px rgba(254, 215, 170, 0.35);
}

.success-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.success-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    max-width: 420px;
    margin-bottom: 20px;
}

.success-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ea490c 0%, #d83f08 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(234, 73, 12, 0.32);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    margin-bottom: 12px;
}

.success-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 73, 12, 0.42);
    filter: brightness(1.04);
}

.success-reset-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 14px;
    text-decoration: underline;
    transition: color 0.2s;
}

.success-reset-btn:hover {
    color: #0f172a;
}

/* Mobile adjustments */
@media (max-width: 580px) {
    .contact-modal-dialog {
        padding: 28px 18px 20px;
        border-radius: 14px;
    }

    .modal-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-modal-title {
        font-size: 20px;
    }

    .contact-modal-subtitle {
        font-size: 13px;
    }

    .modal-submit-btn,
    .success-whatsapp-btn {
        min-height: 46px;
        font-size: 13.5px;
    }
}
