/* =========================================================
   MUSTAFA AL BARMANI
   مصطفى البرماني
   دهانات - طلاء - ديكور - تشطيبات - مقاولات
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #b88746;
    --primary-dark: #8f672f;
    --primary-light: #d8b276;

    --gold: #c99a52;

    --dark: #171513;
    --dark-2: #211d19;
    --dark-3: #2c2722;

    --cream: #f7f2ea;
    --cream-2: #eee6da;

    --white: #ffffff;

    --text: #28231f;
    --muted: #746d65;

    --border: #e4dbcf;

    --success: #159447;

    --shadow:
        0 20px 60px rgba(31, 24, 17, .10);

    --shadow-heavy:
        0 30px 90px rgba(0, 0, 0, .20);

    --radius: 18px;

    --header-height: 82px;

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top:
        calc(var(--header-height) + 20px);

}


body {

    font-family:
        "Cairo",
        Tahoma,
        Arial,
        sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.8;

    overflow-x: hidden;

}


body.no-scroll {

    overflow: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    border: 0;

}


::selection {

    background: var(--primary);

    color: var(--white);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 9px;

}


::-webkit-scrollbar-track {

    background: #eee8df;

}


::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--primary-dark);

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-inline: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--dark);

    color: rgba(255,255,255,.80);

    font-size: 13px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

}


.top-bar-inner {

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.top-info {

    display: flex;

    align-items: center;

    gap: 25px;

}


.top-info span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

}


.top-info i,
.top-contact i {

    color: var(--primary-light);

}


.top-contact a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    transition: .25s;

}


.top-contact a:hover {

    color: var(--white);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid transparent;

    transition:
        .3s ease;

}


.site-header.scrolled {

    box-shadow:
        0 8px 35px rgba(0,0,0,.08);

    border-color: var(--border);

}


.header-inner {

    min-height: var(--header-height);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.logo-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);

    font-size: 20px;

    box-shadow:
        0 8px 22px rgba(184,135,70,.25);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.2;

}


.logo-text strong {

    font-size: 17px;

    color: var(--dark);

    font-weight: 900;

}


.logo-text small {

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 600;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;

}


.main-nav a {

    position: relative;

    padding: 9px 13px;

    color: #514a43;

    font-size: 13px;

    font-weight: 700;

    border-radius: 10px;

    transition: .25s;

}


.main-nav a::after {

    content: "";

    position: absolute;

    right: 13px;

    left: 13px;

    bottom: 3px;

    height: 2px;

    background: var(--primary);

    transform:
        scaleX(0);

    transform-origin: center;

    transition: .25s;

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--primary-dark);

}


.main-nav a:hover::after,
.main-nav a.active::after {

    transform: scaleX(1);

}


/* =========================================================
   HEADER WHATSAPP
========================================================= */

.header-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 0 18px;

    background: var(--dark);

    color: var(--white);

    border-radius: 11px;

    font-size: 13px;

    font-weight: 800;

    transition: .25s;

    flex-shrink: 0;

}


.header-whatsapp i {

    color: #42d77d;

    font-size: 17px;

}


.header-whatsapp:hover {

    background: var(--primary);

    transform: translateY(-2px);

}


.header-whatsapp:hover i {

    color: var(--white);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--dark);

    border-radius: 11px;

    font-size: 20px;

    cursor: pointer;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height:
        calc(100vh - 122px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--dark);

    isolation: isolate;

}


.hero-image {

    position: absolute;

    inset: 0;

    z-index: -3;

    background-size: cover;

    background-position: center;

    transform: scale(1.03);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(19,15,12,.97) 0%,
            rgba(19,15,12,.88) 36%,
            rgba(19,15,12,.56) 67%,
            rgba(19,15,12,.78) 100%
        );

}


.hero-pattern {

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: .16;

    background-image:

        linear-gradient(
            45deg,
            transparent 48%,
            rgba(255,255,255,.12) 49%,
            rgba(255,255,255,.12) 51%,
            transparent 52%
        );

    background-size: 80px 80px;

}


.hero-container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    min-height:
        calc(100vh - 122px);

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    align-items: center;

    gap: 70px;

    padding:
        75px 0
        90px;

}


.hero-content {

    color: var(--white);

    max-width: 700px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 7px 14px;

    margin-bottom: 20px;

    border:
        1px solid rgba(216,178,118,.35);

    border-radius: 100px;

    background:
        rgba(255,255,255,.07);

    color:
        var(--primary-light);

    font-size: 12px;

    font-weight: 700;

    backdrop-filter: blur(8px);

}


.hero-badge span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 5px rgba(201,154,82,.12);

}


.hero h1 {

    margin-bottom: 20px;

    font-size:
        clamp(35px, 5vw, 66px);

    line-height: 1.25;

    letter-spacing: -1.5px;

    font-weight: 900;

}


.hero h1 > span {

    color: var(--primary-light);

}


.hero h1 strong {

    color: var(--white);

    font-weight: 900;

}


.hero-content > p {

    max-width: 650px;

    color:
        rgba(255,255,255,.77);

    font-size:
        clamp(14px, 1.5vw, 17px);

    line-height: 2;

    margin-bottom: 28px;

}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 25px;

}


.btn {

    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 11px;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;

    cursor: pointer;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);

    box-shadow:
        0 12px 28px rgba(184,135,70,.25);

}


.btn-primary:hover {

    box-shadow:
        0 16px 34px rgba(184,135,70,.35);

}


.btn-whatsapp {

    background: #159447;

    color: var(--white);

    box-shadow:
        0 10px 25px rgba(21,148,71,.18);

}


.btn-whatsapp:hover {

    background: #117d3c;

}


.btn-dark {

    background: var(--dark);

    color: var(--white);

}


.btn-light {

    background: var(--white);

    color: var(--dark);

}


.btn-light:hover {

    background: var(--cream);

}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    color:
        rgba(255,255,255,.72);

    font-size: 12px;

}


.hero-features div {

    display: inline-flex;

    align-items: center;

    gap: 7px;

}


.hero-features i {

    color: var(--primary-light);

}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {

    position: relative;

    width: min(100%, 420px);

    justify-self: end;

    background:
        rgba(255,255,255,.10);

    border:
        1px solid rgba(255,255,255,.18);

    border-radius: 25px;

    padding: 12px;

    backdrop-filter: blur(14px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.28);

}


.hero-card-image {

    position: relative;

    height: 450px;

    border-radius: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #5b4631,
            #1d1814
        );

}


.hero-card-image > img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.profile-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255,255,255,.45);

    font-size: 85px;

    background:
        radial-gradient(
            circle at center,
            #735b3e,
            #17130f
        );

}


.experience-badge {

    position: absolute;

    left: 18px;

    bottom: 18px;

    min-width: 130px;

    padding: 13px 17px;

    border-radius: 13px;

    background:
        rgba(255,255,255,.94);

    color: var(--dark);

    box-shadow:
        0 15px 30px rgba(0,0,0,.22);

}


.experience-badge strong {

    display: block;

    color: var(--primary-dark);

    font-size: 17px;

    line-height: 1.2;

}


.experience-badge span {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;

}


.hero-card-content {

    padding: 18px 8px 8px;

    color: var(--white);

}


.hero-card-content > span {

    display: block;

    color: var(--primary-light);

    font-size: 11px;

    font-weight: 700;

}


.hero-card-content h2 {

    margin-top: 4px;

    font-size: 17px;

    line-height: 1.5;

}


/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%);

    width: 38px;

    height: 38px;

    border:
        1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    font-size: 12px;

    animation:
        scrollBounce 1.8s infinite;

}


@keyframes scrollBounce {

    0%,
    100% {
        transform:
            translate(-50%, 0);
    }

    50% {
        transform:
            translate(-50%, 7px);
    }

}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {

    position: relative;

    z-index: 5;

    margin-top: -1px;

    background: var(--white);

    border-bottom:
        1px solid var(--border);

}


.quick-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.quick-item {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px;

    border-left:
        1px solid var(--border);

}


.quick-item:last-child {

    border-left: 0;

}


.quick-icon {

    width: 47px;

    height: 47px;

    flex-shrink: 0;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--primary-dark);

    font-size: 18px;

}


.quick-item strong {

    display: block;

    color: var(--dark);

    font-size: 13px;

    font-weight: 900;

}


.quick-item span {

    display: block;

    color: var(--muted);

    font-size: 10px;

    margin-top: 2px;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding:
        100px 0;
}


.about-section {

    background: var(--white);

}


.services-section {

    background: var(--cream);

}


.works-section {

    background: var(--white);

}


.why-section {

    background:
        linear-gradient(
            180deg,
            #fbf8f3,
            #f2eade
        );

}


.contact-section {

    background: var(--cream);

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 700px;

    margin:
        0 auto 50px;

    text-align: center;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .2px;

}


.section-label span {

    width: 27px;

    height: 2px;

    background: var(--primary);

}


.section-title {

    margin-bottom: 13px;

    color: var(--dark);

    font-size:
        clamp(28px, 4vw, 43px);

    line-height: 1.35;

    font-weight: 900;

}


.section-title span {

    color: var(--primary-dark);

}


.section-heading > p {

    color: var(--muted);

    font-size: 14px;

    line-height: 2;

}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        minmax(300px, .9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;

}


.about-image {

    position: relative;

    min-height: 570px;

}


.about-image::before {

    content: "";

    position: absolute;

    right: -18px;

    top: -18px;

    width: 160px;

    height: 160px;

    border:
        2px solid var(--primary);

    opacity: .45;

    border-radius: 25px;

}


.about-image::after {

    content: "";

    position: absolute;

    left: -18px;

    bottom: -18px;

    width: 120px;

    height: 120px;

    background:
        var(--primary);

    opacity: .10;

    border-radius: 25px;

}


.about-image > img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 570px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow:
        var(--shadow-heavy);

}


.about-placeholder {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 570px;

    border-radius: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: var(--primary);

    background:
        linear-gradient(
            135deg,
            #e9dfd1,
            #f8f4ed
        );

    font-size: 80px;

    box-shadow:
        var(--shadow-heavy);

}


.about-placeholder span {

    color: var(--muted);

    font-size: 13px;

    font-weight: 700;

}


.about-stamp {

    position: absolute;

    z-index: 3;

    right: -25px;

    bottom: 35px;

    min-width: 170px;

    padding: 16px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: var(--dark);

    color: var(--white);

    box-shadow:
        0 15px 35px rgba(0,0,0,.2);

}


.about-stamp i {

    width: 35px;

    height: 35px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

}


.about-stamp span {

    font-size: 11px;

    font-weight: 800;

}


.about-content .section-label {

    margin-bottom: 8px;

}


.about-content .section-title {

    margin-bottom: 18px;

}


.about-content > p {

    color: var(--muted);

    font-size: 14px;

    line-height: 2;

    margin-bottom: 14px;

}


.about-content > .lead {

    color: #504840;

    font-size: 16px;

}


.about-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 25px 0 30px;

}


.about-list div {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #554d45;

    font-size: 12px;

    line-height: 1.8;

}


.about-list i {

    color: var(--primary);

    margin-top: 5px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    overflow: hidden;

    min-height: 290px;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(40,30,20,.04);

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;

}


.service-card::before {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 4px;

    height: 0;

    background: var(--primary);

    transition: .35s;

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(184,135,70,.45);

    box-shadow:
        0 22px 45px rgba(40,30,20,.10);

}


.service-card:hover::before {

    height: 100%;

}


.service-number {

    position: absolute;

    left: 20px;

    top: 15px;

    color: #e9e0d5;

    font-size: 38px;

    font-weight: 900;

    line-height: 1;

}


.service-icon {

    width: 58px;

    height: 58px;

    margin-bottom: 22px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--primary-dark);

    font-size: 22px;

    transition: .3s;

}


.service-card:hover .service-icon {

    background: var(--primary);

    color: var(--white);

    transform:
        rotate(-4deg)
        scale(1.05);

}


.service-card h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 17px;

    font-weight: 900;

}


.service-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 2;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #171411,
            #2a2119
        );

    color: var(--white);

}


.cta-pattern {

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:

        radial-gradient(
            circle,
            var(--primary) 1px,
            transparent 1px
        );

    background-size: 24px 24px;

}


.cta-content {

    position: relative;

    z-index: 2;

    min-height: 240px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 45px 0;

}


.cta-small {

    display: block;

    margin-bottom: 5px;

    color: var(--primary-light);

    font-size: 12px;

    font-weight: 800;

}


.cta-content h2 {

    margin-bottom: 7px;

    font-size:
        clamp(25px, 4vw, 40px);

    line-height: 1.3;

}


.cta-content p {

    max-width: 600px;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;

}


.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 250px;

    gap: 14px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 16px;

    background: var(--cream);

    cursor: pointer;

}


.gallery-item:nth-child(4n + 1) {

    grid-row: span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;

}


.gallery-item:hover img {

    transform: scale(1.08);

}


.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 20px;

    color: var(--white);

    background:
        linear-gradient(
            transparent 45%,
            rgba(0,0,0,.78)
        );

    opacity: 0;

    transition: .3s;

}


.gallery-item:hover .gallery-overlay {

    opacity: 1;

}


.gallery-overlay span {

    font-size: 12px;

    font-weight: 800;

}


.gallery-overlay i {

    width: 35px;

    height: 35px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    font-size: 12px;

}


.empty-gallery {

    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;

    border:
        2px dashed var(--border);

    border-radius: 20px;

    text-align: center;

}


.empty-gallery > i {

    color: var(--primary);

    font-size: 45px;

    margin-bottom: 15px;

}


.empty-gallery h3 {

    margin-bottom: 5px;

    font-size: 20px;

}


.empty-gallery p {

    max-width: 500px;

    color: var(--muted);

    font-size: 13px;

}


/* =========================================================
   WHY
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(300px, .95fr);

    gap: 70px;

    align-items: center;

}


.why-content > p {

    max-width: 650px;

    color: var(--muted);

    font-size: 14px;

    line-height: 2;

    margin-bottom: 25px;

}


.why-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.why-item {

    display: flex;

    gap: 12px;

    padding: 16px;

    background:
        rgba(255,255,255,.65);

    border:
        1px solid rgba(184,135,70,.15);

    border-radius: 15px;

}


.why-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--white);

    color: var(--primary-dark);

    box-shadow:
        0 6px 15px rgba(0,0,0,.05);

}


.why-item h3 {

    margin-bottom: 2px;

    font-size: 13px;

    font-weight: 900;

}


.why-item p {

    color: var(--muted);

    font-size: 10px;

    line-height: 1.8;

}


.why-visual {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.paint-circle {

    position: relative;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        conic-gradient(
            from 30deg,
            var(--primary),
            #e3c18f,
            #76562f,
            var(--primary),
            #ead2ab
        );

    box-shadow:
        0 35px 70px rgba(105,76,37,.20);

}


.paint-circle::before {

    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    background:
        var(--dark);

}


.paint-circle-inner {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--white);

}


.paint-circle-inner i {

    margin-bottom: 12px;

    color: var(--primary-light);

    font-size: 42px;

}


.paint-circle-inner strong {

    font-size: 27px;

    line-height: 1.2;

}


.paint-circle-inner span {

    color: var(--primary-light);

    font-size: 13px;

    font-weight: 700;

}


.floating-note {

    position: absolute;

    padding: 13px 17px;

    display: flex;

    align-items: center;

    gap: 8px;

    border-radius: 12px;

    background: var(--white);

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);

}


.floating-note i {

    color: var(--primary);

}


.note-one {

    top: 50px;

    right: 0;

}


.note-two {

    bottom: 55px;

    left: 0;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(280px, .75fr)
        minmax(0, 1.25fr);

    gap: 25px;

    align-items: stretch;

}


.contact-info {

    display: grid;

    gap: 12px;

}


.contact-card {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition: .25s;

}


.contact-card:hover {

    transform:
        translateX(-4px);

    border-color:
        rgba(184,135,70,.4);

}


.contact-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--cream);

    color: var(--primary-dark);

}


.contact-icon.whatsapp {

    background: #e7f7ed;

    color: #159447;

}


.contact-card span {

    display: block;

    color: #8a8178;

    font-size: 10px;

}


.contact-card strong,
.contact-card a {

    display: block;

    margin-top: 2px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 800;

}


.contact-card a:hover {

    color: var(--primary-dark);

}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(40,30,20,.06);

}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.form-group label {

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;

}


.form-group input,
.form-group textarea {

    width: 100%;

    border:
        1px solid var(--border);

    outline: none;

    background: #fcfaf7;

    color: var(--dark);

    border-radius: 11px;

    padding: 13px 14px;

    font-size: 12px;

    transition: .25s;

}


.form-group input {

    height: 48px;

}


.form-group textarea {

    min-height: 145px;

    resize: vertical;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #aaa098;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(184,135,70,.09);

}


.submit-btn {

    align-self: flex-start;

    border: 0;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--dark);

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        .8fr
        .9fr
        1fr;

    gap: 45px;

    padding:
        70px 0 55px;

}


.footer .logo-text strong {

    color: var(--white);

}


.footer .logo-text small {

    color:
        rgba(255,255,255,.45);

}


.footer-about > p {

    max-width: 400px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 2;

}


.footer h3 {

    margin-bottom: 17px;

    color: var(--primary-light);

    font-size: 14px;

    font-weight: 900;

}


.footer-links,
.footer-services,
.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-links a,
.footer-services span,
.footer-contact a {

    margin-bottom: 9px;

    color:
        rgba(255,255,255,.58);

    font-size: 11px;

    transition: .25s;

}


.footer-links a:hover,
.footer-contact a:hover {

    color: var(--primary-light);

    transform:
        translateX(-3px);

}


.footer-contact a {

    display: flex;

    align-items: center;

    gap: 8px;

}


.footer-contact i {

    width: 18px;

    color: var(--primary-light);

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.08);

}


.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color:
        rgba(255,255,255,.40);

    font-size: 10px;

}


/* =========================================================
   FLOATING ACTIONS
========================================================= */

.floating-actions {

    position: fixed;

    z-index: 900;

    left: 20px;

    bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    font-size: 20px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);

    transition: .25s;

}


.floating:hover {

    transform:
        translateY(-4px)
        scale(1.04);

}


.floating.whatsapp {

    background: #159447;

}


.floating.phone {

    background: var(--dark);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    z-index: 850;

    right: 20px;

    bottom: 20px;

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--primary);

    color: var(--white);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: .3s;

    box-shadow:
        0 10px 25px rgba(184,135,70,.25);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background:
        rgba(10,8,6,.94);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

}


.lightbox.open {

    opacity: 1;

    visibility: visible;

}


.lightbox > img {

    max-width: min(1100px, 90vw);

    max-height: 85vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.4);

}


.lightbox button {

    position: absolute;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.10);

    color: var(--white);

    cursor: pointer;

    transition: .25s;

}


.lightbox button:hover {

    background: var(--primary);

}


.lightbox-close {

    top: 20px;

    right: 20px;

}


.lightbox-prev {

    right: 25px;

    top: 50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    left: 25px;

    top: 50%;

    transform:
        translateY(-50%);

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE 1100
========================================================= */

@media (max-width: 1100px) {


    .main-nav a {

        padding-inline: 9px;

        font-size: 12px;

    }


    .header-whatsapp {

        padding-inline: 13px;

    }


    .hero-container {

        gap: 40px;

    }


    .hero-card {

        width: min(100%, 360px);

    }


    .hero-card-image {

        height: 410px;

    }


    .about-grid {

        gap: 50px;

    }


    .why-grid {

        gap: 40px;

    }


}


/* =========================================================
   RESPONSIVE 900
========================================================= */

@media (max-width: 900px) {


    :root {

        --header-height: 72px;

    }


    .top-info span:last-child {

        display: none;

    }


    .menu-toggle {

        display: flex;

        order: 3;

    }


    .header-whatsapp {

        margin-right: auto;

        order: 2;

    }


    .logo {

        order: 1;

    }


    .main-nav {

        position: absolute;

        top: 100%;

        right: 20px;

        left: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 10px;

        background: var(--white);

        border:
            1px solid var(--border);

        border-radius: 15px;

        box-shadow:
            0 20px 50px rgba(0,0,0,.13);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition: .25s;

    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .main-nav a {

        padding: 12px 15px;

    }


    .main-nav a::after {

        display: none;

    }


    .hero {

        min-height: auto;

    }


    .hero-container {

        min-height: auto;

        grid-template-columns: 1fr;

        padding:
            75px 0
            80px;

    }


    .hero-card {

        justify-self: center;

    }


    .quick-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-item:nth-child(2) {

        border-left: 0;

    }


    .quick-item:nth-child(-n+2) {

        border-bottom:
            1px solid var(--border);

    }


    .about-grid,
    .why-grid {

        grid-template-columns: 1fr;

    }


    .about-image {

        max-width: 650px;

        width: 100%;

        margin-inline: auto;

    }


    .about-content {

        max-width: 750px;

        margin-inline: auto;

    }


    .why-visual {

        min-height: 400px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .contact-info {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE 700
========================================================= */

@media (max-width: 700px) {


    .container {

        width:
            min(
                var(--container),
                calc(100% - 28px)
            );

    }


    .top-bar {

        display: none;

    }


    .site-header {

        top: 0;

    }


    .header-inner {

        min-height: 68px;

    }


    .logo-icon {

        width: 42px;

        height: 42px;

    }


    .logo-text strong {

        font-size: 15px;

    }


    .logo-text small {

        font-size: 9px;

    }


    .header-whatsapp {

        display: none;

    }


    .hero-container {

        padding:
            60px 0
            70px;

    }


    .hero h1 {

        font-size:
            clamp(31px, 10vw, 48px);

    }


    .hero-content > p {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-features {

        flex-direction: column;

        gap: 7px;

    }


    .hero-card {

        width: 100%;

        max-width: 420px;

    }


    .hero-card-image {

        height: 390px;

    }


    .section {

        padding:
            75px 0;

    }


    .section-heading {

        margin-bottom: 35px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 250px;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 190px;

    }


    .gallery-item:nth-child(4n + 1) {

        grid-row: span 1;

    }


    .about-image > img,
    .about-placeholder {

        height: 450px;

    }


    .about-image {

        min-height: 450px;

    }


    .about-list {

        grid-template-columns: 1fr;

    }


    .why-list {

        grid-template-columns: 1fr;

    }


    .paint-circle {

        width: 290px;

        height: 290px;

    }


    .note-one {

        right: 0;

        top: 30px;

    }


    .note-two {

        left: 0;

        bottom: 30px;

    }


    .cta-content {

        flex-direction: column;

        align-items: flex-start;

    }


    .cta-buttons {

        width: 100%;

    }


    .cta-buttons .btn {

        flex: 1;

    }


    .contact-info {

        grid-template-columns: 1fr;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form-box {

        padding: 20px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        padding: 18px 0;

        text-align: center;

    }


    .floating-actions {

        left: 12px;

        bottom: 12px;

    }


    .floating {

        width: 46px;

        height: 46px;

    }


    .back-to-top {

        right: 12px;

        bottom: 12px;

        width: 40px;

        height: 40px;

    }


}


/* =========================================================
   RESPONSIVE 520
========================================================= */

@media (max-width: 520px) {


    .logo-text small {

        display: none;

    }


    .hero-badge {

        font-size: 10px;

    }


    .hero-card-image {

        height: 350px;

    }


    .quick-info-grid {

        grid-template-columns: 1fr;

    }


    .quick-item {

        border-left: 0;

        border-bottom:
            1px solid var(--border);

    }


    .quick-item:last-child {

        border-bottom: 0;

    }


    .section-title {

        font-size: 28px;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

    }


    .about-image {

        min-height: 380px;

    }


    .about-image > img,
    .about-placeholder {

        height: 380px;

    }


    .about-stamp {

        right: 15px;

        bottom: 20px;

    }


    .why-visual {

        min-height: 340px;

    }


    .paint-circle {

        width: 250px;

        height: 250px;

    }


    .paint-circle-inner i {

        font-size: 32px;

    }


    .paint-circle-inner strong {

        font-size: 23px;

    }


    .floating-note {

        font-size: 9px;

        padding: 10px 12px;

    }


    .cta-buttons {

        flex-direction: column;

    }


    .cta-buttons .btn {

        width: 100%;

    }


    .lightbox {

        padding: 15px;

    }


    .lightbox > img {

        max-width: 94vw;

        max-height: 78vh;

    }


    .lightbox-prev {

        right: 10px;

    }


    .lightbox-next {

        left: 10px;

    }


}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}