/* =========================
   GLOBAL STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}


/* =========================
   HEADER / NAVBAR
========================= */

.header {
    width: 100%;
    height: 90px;
    padding: 0 7%;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.logo img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #f5f5f5;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #c89b5c;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.call-btn {
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: 0.3s ease;
}

.call-btn:hover {
    background: #ffffff;
    color: #111111;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    width: 100%;
    min-height: 100vh;
    background: url("../images/hero/hero-bg.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 7%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.52) 45%,
        rgba(0,0,0,0.18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 90px;
    animation: heroFade 1.2s ease;
}

.hero-content h1 {
    font-size: 66px;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #e4e4e4;
    margin-bottom: 38px;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.estimate-btn,
.projects-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.estimate-btn {
    background: #c89b5c;
    color: #111111;
}

.estimate-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.projects-btn {
    border: 1px solid rgba(255,255,255,0.75);
    color: #ffffff;
}

.projects-btn:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}


/* =========================
   SERVICES SECTION
========================= */

.services-preview {
    padding: 100px 7%;
    background: #151515;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 46px;
    margin-bottom: 12px;
    color: #ffffff;
}

.section-title p {
    color: #bbbbbb;
    font-size: 17px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #1b1b1b;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,155,92,0.35);
    box-shadow: 0 18px 35px rgba(0,0,0,0.28);
}

.service-card img {
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
    color: #ffffff;
}

.service-card p {
    padding: 0 24px 28px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 120px 7%;
    background: #101010;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-video {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.about-video video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.about-content {
    max-width: 650px;
}

.about-content span {
    color: #c89b5c;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 20px 0;
}

.about-content p {
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}


/* =========================
   PROJECTS SECTION
========================= */

.projects-section {
    padding: 110px 7%;
    background: #151515;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-item {
    overflow: hidden;
    border-radius: 22px;
    position: relative;
    background: #1b1b1b;
}

.project-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.06);
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #080808;
    padding: 50px 7%;
    text-align: center;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c89b5c;
}

.footer p {
    color: #cccccc;
    margin-bottom: 8px;
}


/* =========================
   DESKTOP FIX
========================= */

@media (min-width: 769px) {
    .navbar {
        display: block !important;
        position: static;
        background: transparent;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
    }
    /* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 999;
    transition: 0.3s ease;
}
}

.whatsapp-float:hover {
   opacity: 0.92;
}

.whatsapp-float img {
  position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-section {
    padding: 110px 7%;
    background: #101010;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #1b1b1b;
    padding: 34px 26px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,155,92,0.35);
    box-shadow: 0 18px 35px rgba(0,0,0,0.28);
}

.why-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(200,155,92,0.14);
    color: #c89b5c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
}

.why-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
    color: #ffffff;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdbdbd;
}
/* =========================
   HERO ANIMATION
========================= */

@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =========================
   PROJECTS PREMIUM OVERLAY
========================= */

.project-item {
    cursor: pointer;
}

.project-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.72)
    );
    opacity: 0;
    transition: 0.35s ease;
}

.project-overlay {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    opacity: 0;
    transform: translateY(18px);
    transition: 0.35s ease;
}

.project-overlay h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 4px;
}

.project-overlay p {
    font-size: 14px;
    color: #c89b5c;
    font-weight: 600;
}

.project-item:hover::after {
    opacity: 1;
}

.project-item:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
    padding: 110px 7%;
    background: #101010;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #1b1b1b;
    padding: 34px 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,155,92,0.35);
    box-shadow: 0 18px 35px rgba(0,0,0,0.28);
}

.stars {
    color: #c89b5c;
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}

.testimonial-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #b88a55;
    font-size: 14px;
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 110px 7%;
    background: #151515;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info span {
    color: #c89b5c;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-info h2 {
    font-size: 48px;
    line-height: 1.15;
    margin: 18px 0 20px;
}

.contact-info p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
}

.contact-details {
    margin-top: 28px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-form {
    background: #1b1b1b;
    padding: 36px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #101010;
    color: #ffffff;
    font-family: inherit;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8f8f8f;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(200,155,92,0.65);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 35px;
    background: #c89b5c;
    color: #111111;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #ffffff;
    transform: translateY(-2px);
}
/* =========================
   MAP SECTION
========================= */

.map-section {
    padding: 110px 7%;
    background: #101010;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}
/* =========================
   THANK YOU PAGE
========================= */

.thank-you-section {
    min-height: 100vh;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7%;
}

.thank-you-box {
    max-width: 620px;
    text-align: center;
    background: #1b1b1b;
    padding: 50px 38px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.thank-you-box img {
    width: 180px;
    margin: 0 auto 28px;
}

.thank-you-box h1 {
    font-size: 48px;
    margin-bottom: 18px;
    color: #c89b5c;
}

.thank-you-box p {
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* =========================
   FOOTER PREMIUM
========================= */

.footer {
    background: #080808;
    padding: 70px 7% 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #c89b5c;
}

.footer h4 {
    font-size: 17px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer p {
    color: #bdbdbd;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links a {
    display: block;
    color: #bdbdbd;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #c89b5c;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #8f8f8f;
}

/* =========================
   ACTIVE NAVBAR
========================= */

.nav-links a.active {
    color: #c89b5c;
}

.nav-links a.active::after {
    width: 100%;
}
.nav-buttons{
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-btn{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: 0.3s ease;
}

.meta-btn:hover{
    transform: translateY(-3px);
    background: #0d65d9;
}
/* =========================
   LOCAL SEO SECTION
========================= */

.local-seo-section {
    padding: 100px 7%;
    background: #101010;
}

.local-seo-content {
    max-width: 1100px;
    margin: auto;
}

.local-seo-content p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.seo-service-box {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.seo-service-box h3 {
    color: #c89b5c;
    margin-bottom: 12px;
    font-size: 22px;
}

.seo-service-box p {
    margin: 0;
    color: #cfcfcf;
}