/* ===================================
   NOVA HOME - MAIN STYLE
   Premium Renovation Landing Page
=================================== */


/* GOOGLE RESET */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Manrope', 'Noto Sans Georgian', sans-serif;

    background: #ffffff;

    color: #111827;

    line-height: 1.6;

    overflow-x: hidden;

}



img {

    width: 100%;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

}



ul {

    list-style: none;

}


body.menu-open {
    overflow: hidden;
}


/* ACCESSIBILITY HELPERS */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 2000;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 10px;
}


/* NATIVE ELEMENT RESETS */

blockquote, figure {
    margin: 0;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    display: inline;
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item[open] summary h3 {
    margin-bottom: 12px;
}

.faq-item p {
    margin-top: 12px;
}

.review-card footer {
    display: block;
}



/* VARIABLES */

:root {


    --primary: #111827;

    --secondary: #D4AF37;

    --white: #ffffff;

    --light: #f8fafc;

    --gray: #64748b;

    --dark: #020617;


    --radius: 18px;


    --shadow:

    0 20px 40px rgba(0,0,0,.08);


    --transition:

    .3s ease;


}





/* CONTAINER */


.container {

    width: min(1200px, 90%);

    margin: auto;

}





/* SECTION HEADER */


.section-header {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;

}



.section-header span {

    color: var(--secondary);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

}



.section-header h2 {

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

    line-height: 1.2;

    margin: 15px 0;

    color: var(--primary);

}



.section-header p {

    color: var(--gray);

    font-size: 17px;

}






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


.header {


    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;


    background:

    rgba(255,255,255,.85);


    backdrop-filter:

    blur(12px);


}



.header-container {


    height: 90px;

    display:flex;

    align-items:center;

    justify-content:space-between;


}





.logo {


    font-size: 26px;

    font-weight: 800;

    letter-spacing: 1px;

    color: var(--primary);


}



.logo span {


    color: var(--secondary);


}





.navigation ul {


    display:flex;

    gap:35px;


}



.navigation a {


    font-size:15px;

    font-weight:500;

    transition:var(--transition);


}



.navigation a:hover {


    color:var(--secondary);


}




.header-btn {


    padding:14px 28px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    transition:var(--transition);

}



.header-btn:hover {


    background:var(--secondary);

    color:#111;


}






/* MOBILE MENU */


.mobile-menu {

    display:none;

    cursor:pointer;

    z-index: 1001;

}



.mobile-menu span {


    width:28px;

    height:3px;

    background:#111;

    display:block;

    margin:5px;

    transition: var(--transition);

}





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


.hero {


    min-height:100vh;


    display:flex;

    align-items:center;


    position:relative;


    background:

    url("../images/hero.jpg")

    center/cover no-repeat;



}



.hero-overlay {


    position:absolute;

    inset:0;


    background:

    linear-gradient(

    90deg,

    rgba(0,0,0,.75),

    rgba(0,0,0,.35)

    );


}





.hero-content {


    position:relative;

    color:white;

    max-width:750px;


}





.hero h1 {


    font-size:

    clamp(42px,6vw,72px);


    line-height:1.1;


    font-weight:800;


    margin-bottom:25px;


}




.hero p {


    font-size:20px;


    color:#e5e7eb;


    margin-bottom:40px;


    max-width:650px;


}





.hero-buttons {


    display:flex;

    gap:20px;


}





.btn-primary {


    background:var(--secondary);


    color:#111;


    padding:16px 35px;


    border-radius:50px;


    font-weight:700;


    transition:var(--transition);


}



.btn-primary:hover {


    transform:translateY(-4px);


}





.btn-outline {


    border:2px solid white;


    color:white;


    padding:14px 35px;


    border-radius:50px;


    transition:var(--transition);


}



.btn-outline:hover {


    background:white;

    color:#111;


}
/* ===========================
SERVICES
=========================== */


.services {

    padding:100px 0;

    background:#ffffff;

}



.service-grid {


    display:grid;

    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}



.service-card {


    background:white;


    padding:35px 25px;


    border-radius:var(--radius);


    box-shadow:var(--shadow);


    transition:var(--transition);


    border:1px solid #f1f5f9;


}



.service-card:hover {


    transform:translateY(-10px);


}



.service-card .icon {


    width:65px;

    height:65px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#fef3c7;


    border-radius:50%;


    font-size:30px;


    margin-bottom:25px;


}



.service-card h3 {


    font-size:22px;

    margin-bottom:15px;


}



.service-card p {


    color:var(--gray);


}







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


.about {


    padding:100px 0;


    background:var(--light);


}



.features-grid {


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}




.feature-card {


    background:white;


    padding:35px;


    border-radius:var(--radius);


    box-shadow:var(--shadow);


    transition:.3s;


}




.feature-card:hover {


    transform:translateY(-8px);


}



.feature-icon {


    width:55px;


    height:55px;


    display:flex;


    justify-content:center;


    align-items:center;


    background:var(--secondary);


    border-radius:50%;


    color:#111;


    font-size:25px;


    font-weight:800;


    margin-bottom:20px;


}




.feature-card h3 {


    margin-bottom:15px;


    font-size:20px;


}



.feature-card p {


    color:var(--gray);


}







/* ===========================
STATS
=========================== */



.stats {


    padding:70px 0;


    background:var(--primary);


    color:white;


}



.stats-grid {


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:20px;


    text-align:center;


}



.stat-item h2 {


    font-size:48px;


    color:var(--secondary);


}



.stat-item p {


    color:#cbd5e1;


}







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


.projects {


    padding:100px 0;


}



.projects-grid {


    display:grid;


    grid-template-columns:

    repeat(2,1fr);


    gap:30px;


}



.project-card {


    overflow:hidden;


    border-radius:var(--radius);


    position:relative;


    box-shadow:var(--shadow);


}



.project-card img {


    height:350px;


    object-fit:cover;


    transition:.5s;


}



.project-card:hover img {


    transform:scale(1.08);


}



.project-info {


    position:absolute;


    bottom:0;


    left:0;


    width:100%;


    padding:25px;


    color:white;


    background:


    linear-gradient(

    transparent,

    rgba(0,0,0,.8)

    );


}



.project-info h3 {


    font-size:24px;


}



.project-info p {


    color:#e5e7eb;


}







/* ===========================
BEFORE AFTER
=========================== */


.before-after {


    padding:100px 0;


    background:var(--light);


}



.before-after-grid {


    display:grid;


    grid-template-columns:

    repeat(2,1fr);


    gap:30px;


}



.ba-card {


    background:white;


    border-radius:var(--radius);


    overflow:hidden;


    box-shadow:var(--shadow);


}



.ba-card img {


    height:450px;


    object-fit:cover;


}



.ba-card h3 {


    text-align:center;


    padding:20px;


    font-size:24px;


}







/* ===========================
REVIEWS
=========================== */


.reviews {


    padding:100px 0;


}



.reviews-grid {


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:30px;


}



.review-card {


    padding:35px;


    background:white;


    border-radius:var(--radius);


    box-shadow:var(--shadow);


}



.review-card p {


    color:var(--gray);


    margin-bottom:25px;


    font-size:16px;


}



.review-card h4 {


    margin-bottom:10px;


}



.review-card div {


    color:var(--secondary);


    font-size:22px;


}
/* ===========================
FAQ
=========================== */


.faq {

    padding:100px 0;

    background:#f8fafc;

}



.faq-list {

    max-width:850px;

    margin:auto;

}



.faq-item {

    background:white;

    padding:30px;

    margin-bottom:20px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}



.faq-item h3 {

    font-size:20px;

    margin-bottom:12px;

}



.faq-item p {

    color:var(--gray);

}






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


.contact {

    padding:100px 0;

}



.contact-box {

    display:grid;

    grid-template-columns:

    1fr 1fr;

    gap:40px;

    background:var(--light);

    padding:50px;

    border-radius:var(--radius);

}



.contact-info h3 {

    font-size:32px;

    margin-bottom:25px;

}



.contact-info p {

    margin-bottom:15px;

    color:var(--gray);

}





.contact-form {

    display:flex;

    flex-direction:column;

    gap:15px;

}



.contact-form input,

.contact-form textarea {


    width:100%;

    padding:16px 20px;

    border:1px solid #e2e8f0;

    border-radius:12px;

    font-size:16px;

    outline:none;


}



.contact-form textarea {

    min-height:150px;

    resize:none;

}



.contact-form button {


    padding:17px;

    background:var(--primary);

    color:white;

    border:none;

    border-radius:50px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;


}



.contact-form button:hover {

    background:var(--secondary);

    color:#111;

}







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


.footer {


    background:#020617;

    color:white;

    padding:70px 0 20px;


}



.footer-grid {


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:40px;


}



.footer h2 {


    color:var(--secondary);


}



.footer h3 {


    margin-bottom:20px;


}



.footer a {


    display:block;

    margin-bottom:10px;

    color:#cbd5e1;


}



.footer p {


    color:#cbd5e1;


}



.copyright {


    text-align:center;


    margin-top:50px;


    padding-top:20px;


    border-top:1px solid #1e293b;


    color:#94a3b8;


}







/* ===========================
FLOAT BUTTONS
=========================== */


.call-button,

.whatsapp-button {


    position:fixed;


    right:25px;


    width:60px;


    height:60px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:50%;


    color:white;


    font-size:25px;


    z-index:999;


}



.call-button {


    bottom:100px;


    background:#2563eb;


}



.whatsapp-button {


    bottom:25px;


    background:#16a34a;


}






/* ===========================
ANIMATION
=========================== */


@keyframes fadeUp {


    from {

        opacity:0;

        transform:translateY(40px);

    }


    to {

        opacity:1;

        transform:none;

    }

}



.hero-content {


    animation:fadeUp 1s ease;


}







/* ===========================
RESPONSIVE
=========================== */



@media(max-width:1024px){


.service-grid,

.features-grid {


    grid-template-columns:

    repeat(2,1fr);


}



.stats-grid {


    grid-template-columns:

    repeat(2,1fr);


}



.reviews-grid {


    grid-template-columns:1fr;


}


}





@media(max-width:768px){



.header-container {


    height:75px;

}



.navigation {

    display:none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 20px 0;


}


.navigation.active {

    display: block;

}


.navigation ul {

    flex-direction: column;
    align-items: center;
    gap: 20px;

}



.mobile-menu {


    display:block;


}


.mobile-menu.active span:nth-child(1) {

    transform: translateY(8px) rotate(45deg);

}


.mobile-menu.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu.active span:nth-child(3) {

    transform: translateY(-8px) rotate(-45deg);

}



.header-btn {


    display:none;


}



.hero {


    min-height:90vh;


}



.hero h1 {


    font-size:42px;


}



.hero p {


    font-size:16px;


}



.hero-buttons {


    flex-direction:column;


    align-items:flex-start;


}



.service-grid,

.features-grid,

.projects-grid,

.before-after-grid,

.contact-box,

.footer-grid {


    grid-template-columns:1fr;


}



.stats-grid {


    grid-template-columns:1fr;


}



.project-card img {


    height:280px;


}



.ba-card img {


    height:300px;


}



.contact-box {


    padding:25px;


}



.section-header {


    margin-bottom:40px;


}



}




@media(max-width:480px){


.hero h1 {


    font-size:34px;


}



.hero-buttons a {


    width:100%;


    text-align:center;


}



.logo {


    font-size:22px;


}


}

.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-info {
    text-align: center;
    width: 100%;
}


.contact-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}