/*======================================================
  Z PAINTING INC.
  Premium Website Styles
======================================================*/


/*======================================================
RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#111111;

    color:#f4f1eb;

    line-height:1.7;

    overflow-x:hidden;

}



/*======================================================
COLORS
======================================================*/

:root{

    --black:#111111;

    --charcoal:#1c1c1c;

    --cream:#f6f2eb;

    --gold:#c9a44c;

    --red:#b71c1c;

    --gray:#9d9d9d;

    --white:#ffffff;

}



/*======================================================
TYPOGRAPHY
======================================================*/

h1,h2,h3,h4{

    font-family:'Cinzel',serif;

    letter-spacing:1px;

    color:var(--cream);

}

h1{

    font-size:84px;

    line-height:1.15;

    font-weight:700;

    max-width:1100px;

    margin:0 auto;

}

h2{

    font-size:46px;

    margin-bottom:20px;

}

h3{

    font-size:24px;

}

p{

    color:#d8d8d8;

    font-size:18px;

}



/*======================================================
LAYOUT
======================================================*/

.container{

    width:92%;

    max-width:1300px;

    margin:auto;

}

section{

    padding:120px 0;

}

.section-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

    display:block;

    margin-bottom:15px;

}



/*======================================================
TOP BAR
======================================================*/

.top-bar{

    background:#000;

    color:#ddd;

    font-size:14px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

}

.top-bar a{

    color:var(--gold);

    text-decoration:none;

    transition:.3s;

}

.top-bar a:hover{

    color:white;

}



/*======================================================
HEADER
======================================================*/

header{

    position:fixed;

    top:38px;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(17,17,17,.70);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;

    padding:0;

}

.logo img{

    width:270px;

    display:block;

}

nav ul{

    display:flex;

    align-items:center;

    list-style:none;

    gap:32px;

}

nav ul a{

    color:white;

    text-decoration:none;

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.3s;

}

nav ul a:hover{

    color:var(--gold);

}



/*======================================================
BUTTONS
======================================================*/

.primary-button,
.estimate-button{

    background:var(--red);

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:40px;

    transition:.35s;

    font-weight:600;

}

.primary-button:hover,
.estimate-button:hover{

    background:#d32f2f;

    transform:translateY(-3px);

}

.secondary-button{

    border:2px solid var(--gold);

    color:var(--gold);

    text-decoration:none;

    padding:16px 34px;

    border-radius:40px;

    margin-left:18px;

    transition:.35s;

}

.secondary-button:hover{

    background:var(--gold);

    color:#111;

}



/*======================================================
HERO
======================================================*/

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    animation:heroZoom 18s ease-in-out infinite alternate;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    width:90%;

    max-width:1100px;

    margin:auto;

    text-align:center;

}

.hero-location{

    color:var(--gold);

    letter-spacing:5px;

    margin-bottom:20px;

}

.hero p{

    max-width:650px;

    margin:30px auto;

    font-size:20px;

}

.hero-buttons{

    margin-top:40px;

}



/*======================================================
ANIMATIONS
======================================================*/

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}
/*======================================================
LOGO
======================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:18px;

    text-decoration:none;

}

.logo img{

    width:88px;

    height:auto;

    display:block;

    flex-shrink:0;

}

.logo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    margin-top:4px;

}

.logo-title{

    display:flex;

    align-items:flex-end;

    line-height:1;

}

.logo-z{

    font-family:'Cinzel', serif;

    font-size:72px;

    font-weight:700;

    color:#f6f2eb;

    line-height:1;

}

.logo-painting{

    font-family:'Cinzel', serif;

    font-size:42px;

    font-weight:600;

    color:#f6f2eb;

    margin-left:6px;

    line-height:1;

    transform:translateY(-4px);

}

.logo-subtitle{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:2px;

    font-size:11px;

    letter-spacing:2px;

    color:#c9a44c;

    text-transform:uppercase;

}

.logo-subtitle .divider{

    color:#777;

}
/*======================================================
SERVICES
======================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.service-card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:45px 35px;

    text-align:center;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#c9a44c;

    box-shadow:0 18px 45px rgba(0,0,0,.45);

}

.service-card img{

    width:72px;

    height:72px;

    margin-bottom:24px;

}

.service-card h3{

    font-family:'Cinzel',serif;

    color:#f6f2eb;

    font-size:30px;

    margin-bottom:18px;

}

.service-card p{

    color:#d4d4d4;

    line-height:1.8;

    font-size:17px;

}
/*======================================================
FEATURED PROJECT
======================================================*/

.featured-project{

    background:#111111;

    padding:90px 0 120px;

}

.featured-image{

    position:relative;

    width:min(1280px,92%);

    margin:auto;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.featured-image img{

    display:block;

    width:100%;

    height:690px;

    object-fit:cover;

    transition:transform 18s ease;

}

.featured-image:hover img{

    transform:scale(1.04);

}

.featured-overlay{

    position:absolute;

    top:70px;

    left:70px;

    width:390px;

    padding:36px;

    background:rgba(17,17,17,.62);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(201,164,76,.35);

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    animation:fadeProject .9s ease forwards;

}

.featured-overlay::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:#c9a44c;

}

.project-tag{

    display:block;

    color:#c9a44c;

    font-size:13px;

    letter-spacing:4px;

    font-weight:600;

    margin-bottom:18px;

}

.featured-overlay h2{

    font-family:'Cinzel',serif;

    color:#f6f2eb;

    font-size:48px;

    line-height:1.05;

    margin-bottom:24px;

}

.featured-overlay h2 span{

    display:block;

}

.featured-overlay p{

    color:#dddddd;

    font-size:18px;

    line-height:1.85;

    margin-bottom:34px;

}

.project-button{

    display:inline-block;

    padding:15px 34px;

    border:2px solid #c9a44c;

    border-radius:50px;

    color:#f6f2eb;

    text-decoration:none;

    font-weight:600;

    transition:.30s;

}

.project-button:hover{

    background:#c9a44c;

    color:#111111;

}

@keyframes fadeProject{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@media(max-width:900px){

    .featured-overlay{

        position:relative;

        top:auto;

        left:auto;

        width:100%;

        border-radius:0;

    }

    .featured-image img{

        height:500px;

    }

}
/*======================================================
PROJECT GALLERY
======================================================*/

.project-gallery{

    padding:70px 0 110px;

    background:#151515;

}
.project-gallery h2{

    font-family:'Cinzel',serif;

    font-size:54px;

    color:#f6f2eb;

    margin:12px 0;

    text-align:center;

}

.gallery-intro{

    text-align:center;

    color:#d9d9d9;

    font-size:18px;

    max-width:760px;

    margin:0 auto 70px;

    line-height:1.8;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    align-items:start;

}

.gallery-grid img:nth-child(4),

.gallery-grid img:nth-child(6){

    margin-top:30px;

}

}

.gallery-large{

    grid-column:1/-1;

}

.gallery-large img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:22px;

}

.gallery-grid img{

    width:100%;

    height:240px;

    object-fit:cover;

    border-radius:18px;

    transition:.35s;

   cursor:zoom-in;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.gallery-grid img{

    width:100%;

    height:240px;

    object-fit:cover;

    border-radius:18px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    border:2px solid transparent;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.30);

}

.gallery-grid img:hover{

    transform:scale(1.04);

    border-color:#c9a44c;

    box-shadow:0 22px 50px rgba(0,0,0,.55);

}

.gallery-large img{

    border-radius:22px;

    margin-bottom:10px;

}

@media(max-width:900px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-large img{

height:300px;

}

.gallery-grid img{

height:240px;

}

}

/*====================================================== 
THE Z PAINTING DIFFERENCE 
======================================================*/
.difference-section{

    background:#111111;

    padding:90px 0 110px;

}

.difference-section .section-subtitle{

    display:block;

    text-align:center;

    color:#c9a44c;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.difference-section h2{

    text-align:center;

    font-family:'Cinzel',serif;

    color:#f6f2eb;

    font-size:54px;

    margin-bottom:20px;

}

.difference-intro{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

    color:#d8d8d8;

    font-size:18px;

    line-height:1.8;

}

/* ---------- GRID ---------- */

.difference-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

/* ---------- CARD ---------- */

.difference-card{

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:28px;

    min-height:300px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    transition:all .35s ease;

}

.difference-card:hover{

    transform:translateY(-8px);

    border-color:#c9a44c;

    box-shadow:0 22px 55px rgba(0,0,0,.45);

}

/* ---------- ICON ---------- */

.difference-icon{

    width:78px;

    height:78px;

    border-radius:50%;

    border:1px solid rgba(201,164,76,.35);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    transition:.35s;

}

.difference-card:hover .difference-icon{

    background:rgba(201,164,76,.08);

    border-color:#c9a44c;

}

.difference-icon img{

    width:44px;

    height:44px;

}

/* ---------- TITLE ---------- */

.difference-card h3{

    font-family:'Cinzel',serif;

    color:#f6f2eb;

    font-size:22px;

    line-height:1.25;

    margin-bottom:10px;

}

/* ---------- GOLD SUBTITLE ---------- */

.difference-highlight{

    display:block;

    color:#c9a44c;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

    font-weight:600;

    margin-bottom:14px;

}

/* ---------- BODY ---------- */

.difference-card p{

    color:#d6d6d6;

    font-size:15px;

    line-height:1.65;

    margin:0;

}

/* ---------- MOBILE ---------- */

@media(max-width:900px){

    .difference-grid{

        grid-template-columns:1fr;

    }

    .difference-card{

        min-height:auto;

    }

}
/*======================================================
GOOGLE REVIEWS
======================================================*/

.reviews-section{

    background:#151515;

    padding:100px 0;

}

.reviews-section h2{

    text-align:center;

    font-family:'Cinzel',serif;

    color:#f6f2eb;

    font-size:52px;

    margin:15px 0;

}

.reviews-intro{

    max-width:760px;

    margin:0 auto 40px;

    text-align:center;

    color:#d8d8d8;

    line-height:1.8;

    font-size:18px;

}

.google-summary{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-bottom:60px;

}

.google-logo{

    width:68px;

    height:68px;

    border-radius:50%;

    background:#fff;

    color:#4285F4;

    font-size:40px;

    font-weight:bold;

    display:flex;

    justify-content:center;

    align-items:center;

}

.google-stars{

    color:#c9a44c;

    font-size:24px;

    letter-spacing:3px;

}

.google-rating{

    color:#f6f2eb;

    font-size:18px;

    margin-top:6px;

}

/*----------------------*/

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

/*----------------------*/

.review-card{

    position:relative;

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:38px;

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);

    border-color:#c9a44c;

    box-shadow:0 22px 50px rgba(0,0,0,.45);

}

/*----------------------*/

.quote-mark{

    position:absolute;

    top:12px;

    left:20px;

    font-size:90px;

    color:rgba(201,164,76,.08);

    font-family:Georgia,serif;

}

.review-stars{

    color:#c9a44c;

    font-size:20px;

    margin-bottom:22px;

}

.review-card p{

    color:#dddddd;

    line-height:1.9;

    font-size:17px;

    font-style:italic;

    margin-bottom:30px;

}

.review-author{

    color:#f6f2eb;

    font-weight:600;

    font-size:18px;

}

.review-source{

    color:#c9a44c;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-top:8px;

}

.reviews-button{

    text-align:center;

    margin-top:60px;

}

@media(max-width:900px){

.reviews-grid{

grid-template-columns:1fr;

}

}
/*======================================================
CALL TO ACTION
======================================================*/

.cta-section{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    background:
        linear-gradient(
            rgba(15,15,15,.62),
            rgba(15,15,15,.62)
        ),
        url("../images/cta/cta-background.jpg");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    overflow:hidden;

}

.cta-overlay{

    width:100%;

    padding:120px 0;

}

.cta-section .container{

    width:100%;

    max-width:1400px;

    margin:auto;

}

.cta-content{

    width:620px;

    margin-left:80px;

    background:rgba(18,18,18,.45);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    padding:55px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.cta-section .section-subtitle{

    display:block;

    color:#c9a44c;

    font-size:14px;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.cta-section h2{

    font-family:'Cinzel',serif;

    color:#f6f2eb;

    font-size:62px;

    line-height:1.1;

    margin:20px 0 30px;

}

.cta-section p{

    color:#e5e5e5;

    font-size:20px;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-button{

    display:inline-block;

    padding:18px 44px;

    border:2px solid #c9a44c;

    border-radius:50px;

    color:#f6f2eb;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.cta-button:hover{

    background:#c9a44c;

    color:#111;

    transform:translateY(-3px);

}

.cta-trust{

    margin-top:50px;

    text-align:center;

}

.cta-divider{

    width:90px;

    height:2px;

    background:#c9a44c;

    margin:0 auto 20px;

}

.cta-stars{

    color:#c9a44c;

    font-size:26px;

    letter-spacing:6px;

}

.cta-trust-text{

    margin-top:14px;

    color:#dddddd;

    font-size:16px;

    letter-spacing:1px;

}

@media(max-width:992px){

    .cta-section{

        min-height:auto;

    }

    .cta-overlay{

        padding:90px 20px;

    }

    .cta-content{

        width:100%;

        margin:0;

        padding:40px;

    }

    .cta-section h2{

        font-size:44px;

    }

}

@media(max-width:600px){

    .cta-content{

        padding:30px;

    }

    .cta-section h2{

        font-size:34px;

    }

    .cta-button{

        width:100%;

        text-align:center;

    }

}
/*======================================================
CONTACT
======================================================*/

.contact-section{

    background:#111;

    padding:110px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

}

.contact-info h2{

    font-family:'Cinzel',serif;

    font-size:54px;

    color:#f6f2eb;

    margin:18px 0 25px;

}

.contact-info p{

    color:#d6d6d6;

    line-height:1.9;

    margin-bottom:40px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    color:#ddd;

    margin-bottom:24px;

    font-size:18px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    background:#1d1d1d;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:18px;

    border-radius:12px;

    font-size:17px;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#c9a44c;

    outline:none;

}

.contact-form button{

    background:#c9a44c;

    color:#111;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-3px);

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

}
/*======================================================
FOOTER
======================================================*/

.footer{

    background:#0d0d0d;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

    padding-bottom:60px;

    align-items:flex-start;

}

/*----------------------------------
FOOTER BRAND
----------------------------------*/

.footer-brand{

    display:flex;

    flex-direction:column;

}

.footer-logo{

    display:flex;

    align-items:flex-start;

    gap:22px;

    margin-bottom:28px;

}

.footer-logo img{

    width:72px;

    height:auto;

    flex-shrink:0;

}

.footer-logo-text h3{

    margin:0;

    font-family:'Cinzel',serif;

    font-size:52px;

    font-weight:600;

    line-height:1;

    color:#f6f2eb;

}

.footer-z{

    font-size:76px;

    line-height:.8;

}

.footer-license{

    margin-top:10px;

    color:#c9a44c;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.footer-tagline{

    color:#c9a44c;

    font-size:24px;

    line-height:1.8;

    margin-left:94px;

}

/*----------------------------------
HEADINGS
----------------------------------*/

.footer h4{

    color:#f6f2eb;

    font-family:'Cinzel',serif;

    font-size:20px;

    margin-bottom:24px;

}

/*----------------------------------
LISTS
----------------------------------*/

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer li{

    margin-bottom:16px;

    color:#d6d6d6;

    font-size:18px;

    line-height:1.8;

}

.footer a{

    color:#d6d6d6;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#c9a44c;

}

/*----------------------------------
BOTTOM BAR
----------------------------------*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#888;

    font-size:15px;

    padding:28px;

}

/*----------------------------------
RESPONSIVE
----------------------------------*/

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

gap:50px;

text-align:center;

}

.footer-logo{

justify-content:center;

}

.footer-logo-text{

text-align:left;

}

.footer-tagline{

margin-left:0;

text-align:center;

}

}
.footer-icon{

    width:20px;

    height:20px;

    flex-shrink:0;

    margin-right:14px;

}

.footer-contact li{

    display:flex;

    align-items:center;

}