html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: linear-gradient(to bottom, #1f2b2b, #3f6b5a);
}

body {
    margin: 0;
    padding: 0;
    background: url("images/aurora.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-80px);
    position: relative;
    top: -80px;
    padding-top: 90px;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    color: white;
    font-size: 72px;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 0, 0, .8);
    font-weight: bold;
}

.hero p {
    color: #f5f5f5;
    font-size: 26px;
    margin-top: 15px;
    text-shadow: 2px 2px 6px black;
}

.wood-section {
    min-height: 60vh;
    height: 30vh;
    background: url("images/wood.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    border-top: 5px solid #3b2b1f;
    padding: 80px 0;
}

.wood-section h2 {
    color: white;
    font-size: 58px;
    margin-bottom: 15px;
    margin: 0;
    text-shadow: 2px 2px 8px black;
}

.wood-section p {
    color: white;
    font-size: 24px;
    margin-bottom: 50px;
    margin-top: 15px;
    text-shadow: 2px 2px 8px black;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    color: white;
    flex-wrap: wrap;
}

.card {
    width: 340px;
    padding: 40px;
    background: rgba(0, 0, 0, .45);
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: .3s;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, .65);
}

.card h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.card p {
    color: white;
    font-size: 20px;
    line-height: 1.6;
}

.quote-btn {
    margin-top: 30px;
    padding: 18px 45px;
    background: #32cd32;
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    border: 3px solid #3d2b1f;
    border-radius: 15px;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .45);
}

.quote-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #28a428;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .7);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;

    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    
    box-sizing: border-box;
    z-index: 1000;
}

.nav-logo {
   width: 50px;
   height: 50px;
   object-fit: contain;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.nav-links a:hover {
    color: #39ff14;
}

.gallery {
    background: linear-gradient(
            to bottom,
            #0f2027 0%,
            #1b4332 35%,
            #111111 70%,
            #080808 100%,
        );
    padding: 60px 8% 90px;
    text-align: center;
}

.gallery h2 {
    color: white;
    text-shadow: 
        0 0 8px #55ff88,
        0 0 2px rgba(76, 175, 80, .4);
    font-size: 2.7rem;
    margin-bottom: 15px;
}

.gallery p {
    color: white;
    margin-bottom: 50px;
}

.gallery-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.gallery-category h3 {
    color: #4caf50;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.gallery-section {
    width: 48%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.gallery-grid img {
    background: #222;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: contain;
    padding: 8px;
    border-radius: 10px;
    border: 2px solid #4caf50;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .45);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    border-color: #7cfc00;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .6);
}

@media(max-width: 900px) {
    .gallery-sections {
        grid-template-columns: 1fr;
    }
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #4caf50;
    border-radius: 12px;
}

.close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

#gallery.gallery {
        background: linear-gradient(
            to bottom,
            #0f2027,
            #1b4332,
            #111111,
            #080808,
        ) !important;

        padding: 90px 8% !important;
        text-align: center;
    }

    .about {
        padding: 100px 10%;
        background: linear-gradient(to bottom, #080808, #132a13, #1b4332);
        color: white;
        text-align: center;
    }

.about-box {
        max-width: 1100px;
        margin: auto;
        background: rgba(0, 0, 0, .45);
        padding: 50px;
        border-radius: 20px;
        border: 3px solid #4caf50;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
    }

.about h2 {
    font-size: 42px;
    margin-bottom: 25px;
    text-shadow: 0 0 12px #4caf50;
}

.about p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.about-highlights div {
    background: rgba(255, 255, 255, .1);
    padding: 18px;
    border-radius: 12px;
    font-weight: bold;
    border: 2pxm solid #4caf50;
}

@media(max-width: 900px) {
    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, #18352d, #0f1d19);
    margin-bottom: 0;
    padding-bottom: 40px;
}

.contact-box {
    max-width: 950px;
    margin: auto;
    background: #252525;
    border: 2px solid #4caf50;
    border-radius: 18px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 0 35px rgba(76, 175, 80, .35);
}

.contact-box h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.contact-text {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.contact-card {
    display: grid;
    background: rgba(255, 255, 255, .12);
    border: 2px solid #4caf50;
    border-radius: 14px;
    padding: 28px;
    text-decoration: none;
    transition: .3s ease;
    color: white;
    box-shadow: none;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(76, 175, 80, .55);
    border: 2px solid #4caf50;
}

.contact-card h3 {
    color: #59d85d;
    margin-bottom: 10px;
}

.contact-card p {
    color: white;
    margin: 0;
}

.quote-btn {
    display: inline-block;
    margin-top: 40px;
    font-size: 18px;
    padding: 18px 50px;
    background: #4caf50;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.quote-btn:hover {
    background: #67df6c;
    transform: scale(1.05);
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.response-card {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 350px;
    width: 100%;
}

.footer {
    background: #111;
    border-top: 3px solid #4caf50;
    margin-top: 0;
    padding: 50px 20px 25px;
    text-align: center;
    color: white;
}

.footer h2 {
    color: #4caf50;
    margin-bottom: 12px;
    font-size: 32px;
}

.footer p {
    color: #ddd;
    margin: 12px 0;
}

.footer-links
.footer-socials {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: .3s;
    font-weight: bold;
}

.footer a:hover {
    color: #67df6c;
    text-decoration: underline;
}

.footer hr {
    width: 80%;
    margin: 30px auto;
    border: none;
    border-top: 1px solid #555;
}

.copyright {
    color: #888;
    font-size: 14px;
}

.footer-contact {
    margin-top: 20px;
    margin-top: 30px 0;
    font-size: 16px;
}

@media(max-width:900px) {

.footer-links
.footer-socials {
    flex-direction: column;
    gap: 15px;
}

}

.footer-links a
.footer-socials a {
    margin: 0 12px;
    font-size: 17px;
}

.policy-box{
    max-width:900px;
    margin:80px auto;
    padding:40px;
    background:#2b2b2b;
    border:2px solid #4caf50;
    border-radius:16px;
    color:white;
    line-height:1.8;
}

.policy-box h1{
    color:#4caf50;
    text-align:center;
    margin-bottom:30px;
}

.policy-box h2{
    color:#67df6c;
    margin-top:30px;
}

.policy-box ul{
    padding-left:20px;
}

.quote-section{
    padding:100px 8%;
    background:linear-gradient(to bottom,#0b0b0b,#132a13);
}

.quote-box{
    max-width:900px;
    margin:auto;
    background:#222;
    border:2px solid #4caf50;
    border-radius:18px;
    padding:50px;
    text-align:center;
}

.quote-box h2{
    color:white;
    font-size:42px;
    margin-bottom:15px;
}

.quote-box p{
    color:#ddd;
    margin-bottom:35px;
}

.input-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.quote-box input,
.quote-box select,
.quote-box textarea{
    width:100%;
    padding:16px;
    background:#333;
    color:white;
    border:2px solid #444;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
}

.quote-box textarea{
    resize:vertical;
    margin-bottom:20px;
}

.upload-label{
    display:block;
    color:white;
    margin-bottom:25px;
}

.submit-btn{
    background:#4caf50;
    color:white;
    padding:18px 45px;
    border:none;
    border-radius:12px;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
    display: block;
    margin: 25px auto 0;
}

.submit-btn:hover{
    background:#63d668;
    transform:scale(1.05);
}

@media(max-width:800px){
    .input-row{
        grid-template-columns:1fr;
    }
}

.policy-check{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:25px 0;
    color:#ddd;
    font-size:15px;
}

.policy-check input{
    width:18px;
    height:18px;
}

.policy-check a{
    color:#59d85d;
    text-decoration:none;
    font-weight:bold;
}

.policy-check a:hover{
    text-decoration:underline;
}

#topBtn{
    display:none;
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:9999;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:#4caf50;
    color:white;

    font-size:24px;
    cursor:pointer;

    box-shadow:0 0 20px rgba(76,175,80,.6);

    transition:.3s;
}

#topBtn:hover{
    background:#67df6c;
    transform:scale(1.1);
}