/* =========================================================
   SAZIM HOMES
   Premium Residential / House Building Website
========================================================= */


/* =========================================================
   01. VARIABLES
========================================================= */

:root {

    --black: #111111;
    --black-soft: #191919;
    --charcoal: #252525;
    --dark-grey: #343434;

    --white: #ffffff;
    --off-white: #f7f5f1;
    --paper: #efede8;

    --beige: #c7b89a;
    --beige-light: #ded5c5;
    --sand: #b6a78d;

    --grey: #777777;
    --grey-light: #d7d4ce;

    --border: rgba(17, 17, 17, 0.12);

    --container: 1240px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 42px;

    --shadow-soft:
        0 15px 45px rgba(17, 17, 17, 0.08);

    --shadow-medium:
        0 25px 70px rgba(17, 17, 17, 0.13);

}


/* =========================================================
   02. RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    font-family: "Inter", sans-serif;
    background: var(--off-white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


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


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


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
}


::selection {
    background: var(--beige);
    color: var(--black);
}


/* =========================================================
   03. CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   04. GLOBAL SECTIONS
========================================================= */

.section {
    position: relative;
    padding: 120px 0;
}


.section-paper {
    background: var(--paper);
}


.section-dark {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 120px 0;
}


/*
   Curved section transitions.
*/

.section-dark::before {
    content: "";
    position: absolute;
    top: -45px;
    left: -2%;
    width: 104%;
    height: 90px;
    background: var(--black);
    border-radius: 50% 50% 0 0;
}


.section-paper {
    border-radius: 55px 55px 0 0;
    margin-top: -1px;
}


.section-heading {
    max-width: 780px;
    margin-bottom: 65px;
}


.section-heading h2,
.about-content h2,
.financing-content h2,
.contact-info h2,
.requirements-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}


.section-heading h2 em,
.about-content h2 em,
.financing-content h2 em,
.contact-info h2 em,
.requirements-content h2 em {
    color: var(--sand);
    font-style: italic;
}


.section-heading p {
    max-width: 680px;
    margin-top: 25px;
    color: var(--grey);
    font-size: 1.05rem;
}


/* =========================================================
   05. SECTION LABEL
========================================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 25px;

    color: var(--dark-grey);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.section-label span {
    display: grid;
    place-items: center;

    width: 32px;
    height: 32px;

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

    border-radius: 50%;

    color: var(--black);

    font-size: 0.65rem;
}


.section-label.light {
    color: var(--beige-light);
}


.section-label.light span {
    color: var(--beige-light);
}


/* =========================================================
   06. EYEBROW
========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 8px 15px;

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

    border-radius: 999px;

    color: var(--beige-light);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================================
   07. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 54px;

    padding: 14px 25px;

    border: 1px solid transparent;

    border-radius: 999px;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.03em;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.btn:hover {
    transform: translateY(-3px);
}


.btn-primary {
    background: var(--beige);
    color: var(--black);

    box-shadow:
        0 10px 30px rgba(199, 184, 154, 0.22);
}


.btn-primary:hover {
    background: var(--beige-light);
}


.btn-dark {
    background: var(--black);
    color: var(--white);
}


.btn-dark:hover {
    background: var(--charcoal);
}


.btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: transparent;
}


.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}


.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
}


.btn-light {
    background: var(--white);
    color: var(--black);
}


/* =========================================================
   08. HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0)
        );

    transition:
        background 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease;
}


.site-header.scrolled {
    padding: 13px 0;

    background: rgba(17, 17, 17, 0.96);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.2);
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   09. LOGO
========================================================= */

.logo {
    display: flex;
    flex-direction: column;

    line-height: 0.85;

    color: var(--white);
}


.logo-main {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}


.logo-sub {
    margin-top: 7px;

    color: var(--beige);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.5em;
}


/* =========================================================
   10. NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}


.nav-link {
    position: relative;

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

    font-size: 0.78rem;
    font-weight: 600;

    transition:
        color 0.25s ease;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--beige);

    transition: width 0.25s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--white);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.nav-cta {
    min-height: 44px;
    padding: 11px 19px;
}


.mobile-menu-btn {
    display: none;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: var(--beige);
    color: var(--black);

    font-size: 1.1rem;

    cursor: pointer;
}


/* =========================================================
   11. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    border-radius: 0 0 55px 55px;
}


.hero-image {
    position: absolute;
    inset: -4%;

    background-image:
        url(
            "https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=2200&q=85"
        );

    background-size: cover;
    background-position: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.63) 48%,
            rgba(0, 0, 0, 0.25) 100%
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}


.hero-text {
    max-width: 780px;
}


.hero h1 {
    margin: 25px 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        4rem,
        8vw,
        7.8rem
    );

    font-weight: 500;

    line-height: 0.84;

    letter-spacing: -0.045em;
}


.hero h1 span {
    display: block;

    color: var(--beige-light);

    font-style: italic;
}


.hero p {
    max-width: 620px;

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

    font-size: 1.08rem;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 34px;
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-top: 40px;

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

    font-size: 0.75rem;
    font-weight: 600;
}


.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}


.hero-trust i {
    color: var(--beige);
}


.scroll-indicator {
    position: absolute;

    right: 45px;
    bottom: 35px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--white);

    font-size: 0.7rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.13em;

    writing-mode: vertical-rl;
}


.scroll-indicator i {
    color: var(--beige);
}


/* =========================================================
   12. INTRO
========================================================= */

.intro {
    padding: 150px 0 120px;
}


.intro-content {
    max-width: 950px;
}


.intro-content h2 {
    max-width: 900px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        3.3rem,
        6vw,
        6.3rem
    );

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.04em;
}


.intro-content h2 em {
    color: var(--sand);
}


.intro-content p {
    max-width: 720px;

    margin-top: 28px;

    color: var(--grey);

    font-size: 1.05rem;
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 32px;

    font-size: 0.8rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.1em;

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

    padding-bottom: 6px;
}


.text-link i {
    transition: transform 0.25s ease;
}


.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   13. PROBLEM SECTION
========================================================= */

.problem-section {
    overflow: hidden;

    border-radius: 55px 55px 0 0;
}


.problem-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.8fr);

    gap: 100px;

    align-items: center;
}


.problem-heading h2 {
    margin-top: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        4rem,
        7vw,
        7rem
    );

    line-height: 0.82;

    font-weight: 500;

    letter-spacing: -0.05em;
}


.problem-heading h2 span {
    display: block;

    color: var(--beige);

    font-style: italic;
}


.problem-heading h3 {
    margin-top: 25px;

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

    font-size: 1.1rem;
    font-weight: 500;
}


.problem-content {
    max-width: 500px;
}


.large-text {
    color: var(--white) !important;

    font-family: "Cormorant Garamond", serif;

    font-size: 2rem !important;

    line-height: 1.15;
}


.problem-content p {
    color: rgba(255, 255, 255, 0.68);

    margin-bottom: 25px;
}


/* =========================================================
   14. STATS
========================================================= */

.stats-section {
    position: relative;

    margin-top: -1px;

    padding: 65px 0;

    background: var(--black);

    color: var(--white);

    border-radius: 0 0 45px 45px;
}


.stats-grid {
    display: grid;

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


.stat-item {
    padding: 15px 30px;

    border-right:
        1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}


.stat-item:last-child {
    border-right: 0;
}


.stat-item strong {
    display: block;

    color: var(--beige);

    font-family: "Cormorant Garamond", serif;

    font-size: 2.6rem;

    font-weight: 500;

    line-height: 1;
}


.stat-item span {
    display: block;

    margin-top: 8px;

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

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   15. ABOUT
========================================================= */

.about {
    overflow: hidden;
}


.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 100px;

    align-items: center;
}


.about-visual {
    position: relative;

    min-height: 650px;
}


.about-image-main {
    position: absolute;

    top: 0;
    left: 0;

    width: 78%;
    height: 540px;

    overflow: hidden;

    border-radius:
        var(--radius-xl)
        var(--radius-xl)
        var(--radius-xl)
        12px;

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


.about-image-main img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}


.about-image-main:hover img {
    transform: scale(1.04);
}


.about-image-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 285px;

    overflow: hidden;

    border: 10px solid var(--off-white);

    border-radius:
        30px
        10px
        30px
        30px;

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


.about-image-small img {
    height: 100%;
    object-fit: cover;
}


.about-badge {
    position: absolute;

    left: 48px;
    bottom: 80px;

    width: 125px;
    height: 125px;

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

    background: var(--beige);

    color: var(--black);

    border-radius: 50%;

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

    text-align: center;
}


.about-badge span {
    font-size: 1.25rem;
    font-weight: 900;

    letter-spacing: 0.12em;
}


.about-badge strong {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
}


.about-badge small {
    margin-top: 6px;

    font-size: 0.45rem;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.about-content .lead,
.financing-content .lead {
    margin-top: 28px;

    color: var(--dark-grey);

    font-size: 1.1rem;
    font-weight: 500;
}


.about-content > p:not(.lead) {
    margin-top: 18px;

    color: var(--grey);
}


.about-points {
    display: grid;

    gap: 20px;

    margin-top: 35px;
}


.about-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 18px;

    background: var(--paper);

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

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


.about-point:hover {
    transform: translateY(-4px);

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


.about-point > i {
    flex-shrink: 0;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    background: var(--black);

    color: var(--beige);

    border-radius: 50%;
}


.about-point h3 {
    font-size: 0.95rem;
}


.about-point p {
    margin-top: 3px;

    color: var(--grey);

    font-size: 0.82rem;
}


/* =========================================================
   16. SERVICES
========================================================= */

.services {
    border-radius: 55px 55px 0 0;
}


.services-grid {
    display: grid;

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

    gap: 18px;
}


.service-card {
    position: relative;

    min-height: 390px;

    padding: 38px 32px;

    background: var(--off-white);

    border: 1px solid rgba(17, 17, 17, 0.08);

    border-radius:
        30px
        12px
        30px
        30px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.service-card:hover {
    transform: translateY(-9px);

    background: var(--white);

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


.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: var(--grey-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 3rem;

    line-height: 1;
}


.service-icon {
    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    margin-bottom: 45px;

    background: var(--black);

    color: var(--beige);

    border-radius: 18px;
}


.service-card h3 {
    max-width: 250px;

    font-family: "Cormorant Garamond", serif;

    font-size: 2rem;

    font-weight: 600;

    line-height: 1.05;
}


.service-card p {
    margin-top: 14px;

    color: var(--grey);

    font-size: 0.87rem;
}


.card-link {
    position: absolute;

    bottom: 30px;
    left: 32px;

    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.card-link i {
    transition: transform 0.25s ease;
}


.card-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   17. PROCESS
========================================================= */

.process {
    overflow: hidden;
}


.process-grid {
    display: grid;

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

    align-items: center;
}


.process-step {
    text-align: center;

    padding: 25px 10px;
}


.process-number {
    display: block;

    margin-bottom: 18px;

    color: var(--beige);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.process-step > i {
    display: grid;
    place-items: center;

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    background: var(--black);

    color: var(--beige);

    border-radius: 50%;

    font-size: 1.2rem;
}


.process-step h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 1.8rem;
}


.process-step p {
    max-width: 220px;

    margin: 10px auto 0;

    color: var(--grey);

    font-size: 0.78rem;
}


.process-line {
    width: 50px;
    height: 1px;

    background:
        var(--grey-light);
}


/* =========================================================
   18. REQUIREMENTS
========================================================= */

.requirements {
    overflow: hidden;

    border-radius: 55px 55px 0 0;
}


.requirements-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 100px;

    align-items: center;
}


.requirements-content p {
    max-width: 520px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.65);
}


.requirements-content .small-note {
    font-size: 0.75rem;

    color: rgba(255, 255, 255, 0.4);
}


.requirements-list {
    display: grid;

    gap: 12px;
}


.requirement-item {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 25px;

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

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

    border-radius: 25px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.requirement-item:hover {
    transform: translateX(7px);

    background: rgba(255, 255, 255, 0.09);
}


.requirement-item > span {
    color: var(--beige);

    font-size: 0.7rem;
    font-weight: 800;
}


.requirement-item > div {
    display: grid;

    grid-template-columns: auto 1fr;

    column-gap: 15px;
}


.requirement-item i {
    grid-row: span 2;

    display: grid;
    place-items: center;

    width: 45px;
    height: 45px;

    background: var(--beige);

    color: var(--black);

    border-radius: 14px;
}


.requirement-item h3 {
    align-self: end;

    font-family: "Cormorant Garamond", serif;

    font-size: 1.5rem;
}


.requirement-item p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.76rem;
}


/* =========================================================
   19. FINANCING
========================================================= */

.financing {
    overflow: hidden;
}


.financing-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}


.financing-visual {
    height: 610px;

    overflow: hidden;

    border-radius:
        42px
        12px
        42px
        42px;

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


.financing-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.financing-visual:hover img {
    transform: scale(1.04);
}


.financing-content > p:not(.lead):not(.disclaimer) {
    margin-top: 20px;

    color: var(--grey);
}


.financing-highlight {
    display: flex;
    align-items: center;
    gap: 18px;

    margin: 30px 0;

    padding: 20px;

    background: var(--paper);

    border-radius: 22px;
}


.financing-highlight > i {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    background: var(--black);

    color: var(--beige);

    border-radius: 50%;
}


.financing-highlight strong,
.financing-highlight span {
    display: block;
}


.financing-highlight strong {
    font-size: 0.9rem;
}


.financing-highlight span {
    margin-top: 2px;

    color: var(--grey);

    font-size: 0.76rem;
}


.disclaimer {
    margin-top: 20px;

    color: var(--grey);

    font-size: 0.68rem;
}


/* =========================================================
   20. PROJECTS
========================================================= */

.projects {
    border-radius: 55px 55px 0 0;
}


.projects-heading {
    display: grid;

    grid-template-columns:
        1fr 0.65fr;

    gap: 80px;

    align-items: end;
}


.projects-heading > p {
    margin: 0;
}


.project-feature {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    min-height: 530px;

    margin-bottom: 20px;

    background: var(--black);

    color: var(--white);

    border-radius:
        38px
        15px
        38px
        38px;

    overflow: hidden;

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


.project-feature-image {
    min-height: 530px;
}


.project-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.project-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}


.project-label {
    color: var(--beige);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.project-feature-content h3 {
    margin-top: 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: 3.1rem;

    font-weight: 500;

    line-height: 0.95;
}


.project-feature-content p {
    margin-top: 20px;

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

    font-size: 0.88rem;
}


.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 30px;
}


.project-meta span {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 13px;

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

    border-radius: 999px;

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

    font-size: 0.68rem;
}


.project-meta i {
    color: var(--beige);
}


.projects-grid {
    display: grid;

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

    gap: 18px;
}


.project-card {
    background: var(--off-white);

    border-radius: 28px;

    overflow: hidden;

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


.project-card:hover {
    transform: translateY(-7px);

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


.project-image {
    position: relative;

    height: 300px;

    overflow: hidden;
}


.project-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


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


.project-image span {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 8px 12px;

    background: rgba(17, 17, 17, 0.85);

    color: var(--white);

    border-radius: 999px;

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 0.1em;
}


.project-card-content {
    padding: 25px;
}


.project-card-content h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 1.8rem;
}


.project-card-content p {
    margin-top: 5px;

    color: var(--grey);

    font-size: 0.76rem;
}


/* =========================================================
   21. SECTORS
========================================================= */

.sectors {
    overflow: hidden;
}


.sectors-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 22px;
}


.sector-item {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius:
        40px
        15px
        40px
        40px;

    color: var(--white);
}


.sector-image {
    position: absolute;
    inset: 0;
}


.sector-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.05)
        );
}


.sector-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.sector-item:hover img {
    transform: scale(1.05);
}


.sector-number {
    position: absolute;

    top: 25px;
    right: 25px;

    z-index: 2;

    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    font-size: 0.7rem;
}


.sector-content {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    z-index: 2;
}


.sector-content h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 3rem;

    font-weight: 500;
}


.sector-content p {
    max-width: 450px;

    margin-top: 8px;

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

    font-size: 0.82rem;
}


/* =========================================================
   22. CREDENTIALS
========================================================= */

.credentials {
    border-radius: 55px 55px 0 0;
}


.credentials-grid {
    display: grid;

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

    gap: 18px;
}


.credential-card {
    padding: 38px;

    background: var(--off-white);

    border:
        1px solid rgba(17, 17, 17, 0.08);

    border-radius:
        28px
        12px
        28px
        28px;

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


.credential-card:hover {
    transform: translateY(-6px);

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


.credential-icon {
    display: grid;
    place-items: center;

    width: 55px;
    height: 55px;

    background: var(--black);

    color: var(--beige);

    border-radius: 18px;

    margin-bottom: 35px;
}


.credential-label {
    display: block;

    color: var(--grey);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.credential-card h3 {
    margin-top: 8px;

    font-family: "Cormorant Garamond", serif;

    font-size: 1.7rem;

    line-height: 1.05;
}


.credential-card p {
    margin-top: 8px;

    color: var(--grey);

    font-size: 0.75rem;
}


.credential-card strong {
    color: var(--black);

    font-size: 0.8rem;

    letter-spacing: 0.05em;
}


/* =========================================================
   23. CTA
========================================================= */

.cta-section {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    border-radius:
        55px
        55px
        0
        0;
}


.cta-background {
    position: absolute;
    inset: -3%;

    background-image:
        url(
            "https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2200&q=85"
        );

    background-size: cover;
    background-position: center;
}


.cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.35)
        );
}


.cta-content {
    position: relative;
    z-index: 2;
}


.cta-content h2 {
    max-width: 800px;

    margin-top: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        4rem,
        8vw,
        8rem
    );

    font-weight: 500;

    line-height: 0.84;

    letter-spacing: -0.05em;
}


.cta-content h2 span {
    display: block;

    color: var(--beige-light);

    font-style: italic;
}


.cta-content p {
    max-width: 570px;

    margin-top: 28px;

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

    font-size: 1rem;
}


.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 35px;
}


/* =========================================================
   24. CONTACT
========================================================= */

.contact {
    background: var(--off-white);

    border-radius: 55px 55px 0 0;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;

    align-items: start;
}


.contact-info > p {
    max-width: 550px;

    margin-top: 28px;

    color: var(--grey);
}


.contact-details {
    display: grid;

    gap: 12px;

    margin-top: 40px;
}


.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px;

    background: var(--paper);

    border-radius: 20px;

    transition:
        transform 0.3s ease;
}


.contact-detail:hover {
    transform: translateX(5px);
}


.contact-icon {
    display: grid;
    place-items: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    background: var(--black);

    color: var(--beige);

    border-radius: 15px;
}


.contact-detail small {
    display: block;

    color: var(--grey);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.contact-detail strong {
    display: block;

    margin-top: 2px;

    font-size: 0.82rem;
}


.contact-detail > div > span {
    display: block;

    color: var(--grey);

    font-size: 0.73rem;
}


.contact-registration {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 25px;

    font-size: 0.62rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.contact-registration span {
    color: var(--grey);
}


.contact-registration strong {
    color: var(--black);
}


.contact-form-wrapper {
    padding: 45px;

    background: var(--white);

    border-radius:
        35px
        15px
        35px
        35px;

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


.form-heading h3 {
    margin-top: 12px;

    font-family: "Cormorant Garamond", serif;

    font-size: 2.8rem;

    font-weight: 500;

    line-height: 0.95;
}


.contact-form {
    margin-top: 30px;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}


.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 15px 17px;

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

    border-radius: 15px;

    outline: none;

    background: var(--off-white);

    color: var(--black);

    font-size: 0.84rem;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group textarea {
    resize: vertical;

    min-height: 150px;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--beige);

    box-shadow:
        0 0 0 4px rgba(199, 184, 154, 0.18);
}


.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 10px 0 20px;
}


.form-consent input {
    margin-top: 4px;

    accent-color: var(--black);
}


.form-consent label {
    color: var(--grey);

    font-size: 0.68rem;

    line-height: 1.5;
}


.form-submit {
    width: 100%;
}


.form-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}


.form-note {
    margin-top: 15px;

    color: var(--grey);

    font-size: 0.65rem;

    text-align: center;
}


/* =========================================================
   25. CONTACT BAR
========================================================= */

.contact-bar {
    background: var(--beige);

    color: var(--black);

    border-radius:
        35px
        35px
        0
        0;
}


.contact-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 35px 0;
}


.contact-bar span {
    display: block;

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.contact-bar strong {
    display: block;

    margin-top: 4px;

    font-family: "Cormorant Garamond", serif;

    font-size: 1.8rem;
}


.contact-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.contact-bar-link {
    font-size: 0.76rem;
    font-weight: 700;
}


.contact-bar-link i {
    margin-right: 5px;
}


/* =========================================================
   26. FOOTER
========================================================= */

.site-footer {
    padding: 85px 0 25px;

    background: var(--black);

    color: var(--white);

    border-radius: 0;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 0.7fr 0.9fr 1fr;

    gap: 50px;

    padding-bottom: 65px;
}


.footer-brand {
    max-width: 360px;
}


.footer-brand p {
    margin-top: 22px;

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

    font-size: 0.8rem;
}


.footer-brand .footer-legal {
    color: rgba(255, 255, 255, 0.35);

    font-size: 0.65rem;

    line-height: 1.8;
}


.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}


.footer-column h3 {
    margin-bottom: 12px;

    color: var(--beige);

    font-size: 0.68rem;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.76rem;

    transition: color 0.25s ease;
}


.footer-column a:hover {
    color: var(--white);
}


.footer-contact span {
    line-height: 1.5;
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding-top: 25px;

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


.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 0.63rem;
}


.footer-registration {
    display: flex;
    gap: 20px;

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

    font-size: 0.6rem;
}


/* =========================================================
   27. WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 17px;

    background: #1f1f1f;

    color: var(--white);

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

    border-radius: 999px;

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

    font-size: 0.7rem;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.whatsapp-float i {
    color: #25d366;

    font-size: 1.3rem;
}


.whatsapp-float:hover {
    transform: translateY(-5px);

    background: var(--black);
}


/* =========================================================
   28. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

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


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   29. JAVASCRIPT ENABLED
========================================================= */

html.js-enabled .reveal {
    opacity: 0;
}


html.js-enabled .reveal.visible {
    opacity: 1;
}


/* =========================================================
   30. RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 20px;
    }


    .about-grid,
    .financing-grid {
        gap: 55px;
    }


    .problem-grid {
        gap: 60px;
    }


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


    .footer-grid {
        grid-template-columns:
            1.2fr 0.8fr 0.8fr;
    }

}


/* =========================================================
   31. RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .container {
        width: min(
            calc(100% - 36px),
            var(--container)
        );
    }


    .mobile-menu-btn {
        display: grid;
        place-items: center;

        position: relative;
        z-index: 1002;
    }


    .main-nav {
        position: fixed;

        top: 0;
        right: 0;

        width: min(390px, 88vw);
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 25px;

        padding: 80px 45px;

        background: var(--black);

        box-shadow:
            -20px 0 60px rgba(0, 0, 0, 0.25);

        transform:
            translateX(110%);

        transition:
            transform 0.4s ease;

        z-index: 1001;
    }


    .main-nav.open {
        transform:
            translateX(0);
    }


    .nav-link {
        font-size: 1rem;
    }


    .nav-cta {
        margin-top: 10px;
    }


    .hero {
        min-height: 850px;

        border-radius: 0 0 35px 35px;
    }


    .problem-grid,
    .about-grid,
    .financing-grid,
    .requirements-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .about-visual {
        min-height: 600px;
    }


    .projects-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .project-feature {
        grid-template-columns: 1fr;
    }


    .project-feature-image {
        min-height: 400px;
    }


    .project-feature-content {
        padding: 45px;
    }


    .sectors-grid {
        grid-template-columns: 1fr;
    }


    .credentials-grid {
        grid-template-columns: 1fr 1fr;
    }


    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }


    .process-line {
        display: none;
    }

}


/* =========================================================
   32. RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .section,
    .section-dark {
        padding: 90px 0;
    }


    .section-paper,
    .section-dark,
    .services,
    .requirements,
    .projects,
    .credentials,
    .cta-section,
    .contact,
    .problem-section {
        border-radius:
            35px
            35px
            0
            0;
    }


    .hero {
        min-height: 780px;
    }


    .hero h1 {
        font-size: clamp(
            3.8rem,
            16vw,
            6rem
        );
    }


    .hero p {
        font-size: 0.92rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }


    .scroll-indicator {
        display: none;
    }


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


    .stat-item {
        padding: 20px 10px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.1);
    }


    .stat-item:nth-child(2) {
        border-right: 0;
    }


    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 0;
    }


    .about-visual {
        min-height: 500px;
    }


    .about-image-main {
        width: 88%;
        height: 430px;
    }


    .about-image-small {
        width: 50%;
        height: 220px;
    }


    .about-badge {
        left: 20px;
        bottom: 55px;

        width: 100px;
        height: 100px;
    }


    .services-grid,
    .credentials-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }


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


    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-step {
        padding: 10px 0 25px;
    }


    .financing-visual {
        height: 450px;
    }


    .project-feature-content {
        padding: 35px 28px;
    }


    .project-feature-content h3 {
        font-size: 2.5rem;
    }


    .sector-item {
        min-height: 480px;
    }


    .contact-form-wrapper {
        padding: 30px 22px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .contact-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }


    .contact-bar-actions {
        flex-direction: column;
        align-items: flex-start;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


    .footer-registration {
        flex-direction: column;
        gap: 5px;
    }


    .whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 54px;
        height: 54px;

        justify-content: center;

        padding: 0;
    }


    .whatsapp-float span {
        display: none;
    }

}


/* =========================================================
   33. RESPONSIVE — 480px
========================================================= */

@media (max-width: 480px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }


    .site-header {
        padding: 15px 0;
    }


    .logo-main {
        font-size: 1.2rem;
    }


    .logo-sub {
        font-size: 0.48rem;
    }


    .hero {
        min-height: 720px;
    }


    .hero h1 {
        font-size: 3.65rem;
    }


    .hero-content {
        padding-top: 80px;
    }


    .intro {
        padding: 110px 0 80px;
    }


    .intro-content h2,
    .section-heading h2,
    .about-content h2,
    .financing-content h2,
    .contact-info h2,
    .requirements-content h2 {
        font-size: 3.1rem;
    }


    .problem-heading h2 {
        font-size: 4rem;
    }


    .problem-content .large-text {
        font-size: 1.65rem !important;
    }


    .about-visual {
        min-height: 420px;
    }


    .about-image-main {
        width: 92%;
        height: 350px;
    }


    .about-image-small {
        width: 53%;
        height: 175px;

        border-width: 7px;
    }


    .about-badge {
        width: 85px;
        height: 85px;

        left: 10px;
        bottom: 45px;
    }


    .about-badge span {
        font-size: 0.9rem;
    }


    .about-badge strong {
        font-size: 0.42rem;
    }


    .about-badge small {
        font-size: 0.35rem;
    }


    .service-card {
        min-height: 330px;

        padding: 30px 25px;
    }


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


    .requirement-item {
        align-items: flex-start;

        padding: 20px;

        gap: 15px;
    }


    .requirement-item > div {
        grid-template-columns: 1fr;
    }


    .requirement-item i {
        display: none;
    }


    .project-feature-image {
        min-height: 300px;
    }


    .project-image {
        height: 260px;
    }


    .sector-item {
        min-height: 400px;
    }


    .sector-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


    .sector-content h3 {
        font-size: 2.5rem;
    }


    .cta-section {
        min-height: 600px;
    }


    .cta-content h2 {
        font-size: 4.5rem;
    }


    .contact-bar strong {
        font-size: 1.45rem;
    }

}


/* =========================================================
   34. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }


    .reveal {
        opacity: 1 !important;

        transform: none !important;
    }

}