* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter',
        'Segoe UI',
        Roboto,
        system-ui,
        sans-serif;
}

body {
    /* background-color: #1a1a1a; */
    background-color: #013a31;
    color: #e0e0e0;
    line-height: 1.5;
    scroll-behavior: smooth;
}

:root {
    --gold: #C8A951;
    --gold-light: #ddc180;
    --black-mat: #0F0F0F;
    --black-rich: #0A0A0A;
    --dark-charcoal: #1A1A1A;
    --text-light: #EAEAEA;
    --text-muted: #AAAAAA;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== GO TO TOP BUTTON ========== */
.go-top-btn {
    position: fixed;
    bottom: 30px;
    right: 40px;
    background: var(--gold);
    color: #0a0a0a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
}

.go-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.go-top-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
}



/* ========== STICKY NAVBAR ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    flex-wrap: wrap;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(4 37 26 / 95%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--gold);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--gold), #eac670);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 20;
}

.logo span {
    font-weight: 300;
    color: #999;
    background: none;
    -webkit-text-fill-color: #aaa;
}

/* desktop navigation */
.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.2s;
    font-size: 1.05rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* hamburger icon - hidden on desktop */
.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 20;
}

/* mobile menu overlay - single definition */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    border-radius: 0 0 30px 30px;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.8);
    z-index: 15;
}

.mobile-menu a {
    color: #eee;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-weight: 500;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* buttons */
.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: black;
}

.btn-gold {
    background: var(--gold);
    border: none;
    color: #0a0a0a;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid var(--gold);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

.btn-gold i,
.btn-outline i {
    margin-right: 8px;
}

/* hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 100px 70px 120px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    height: auto;
    padding-bottom: 100px;
}

/* Background image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/bg1.jpg') center/cover no-repeat;
    z-index: -2;
}

/* Dark + gold overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgb(64 128 159 / 32%), transparent 60%), rgb(14 14 14 / 75%);
    z-index: -1;
}

.hero-content {
    flex: 2 1 380px;
}

/* LEFT TEXT */
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #fff0cf, var(--gold), #f9d77e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(200, 169, 81, 0.2);
}

/* BADGE */
.hero-badge {
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(200, 169, 81, 0.4);
    backdrop-filter: blur(5px);
    display: inline-block;
    width: fit-content;
}


.hero-content p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 40px;
}

.tagline-gold {
    display: inline-block;
    width: fit-content;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;

    border-left: 4px solid var(--gold);
    border-top: 2px solid rgba(200, 169, 81, 0.6);
    border-bottom: 2px solid rgba(200, 169, 81, 0.6);

    padding: 10px 20px;
    margin: 30px 0;

    /* optional slight glow */
    box-shadow: 0 0 10px rgba(200, 169, 81, 0.2);
    clip-path: inset(0px 0px 0px -10px);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}


.hero-image {
    position: absolute;
    top: 20px;
    right: 30px;
    padding: 0;
    /* remove extra spacing */
    text-align: center;
}


/* LOGO */
.hero-image img {
    height: 230px;
    width: auto;
    object-fit: contain;
}

/* logo hover glow */
.hero-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 35px rgba(200, 169, 81, 1));
}

/* text under logo */
.hero-image p {
    color: #bbb;
    letter-spacing: 2px;
}

.empire-trust {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #777;
}

/* section titles */
.section-title {
    margin-top: 20px;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    color: var(--gold);
    border-bottom: 3px solid var(--gold);
    padding-bottom: 5px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
}

/* about section */
.section-padding {
    padding-top: 70px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.about-text {
    flex: 2 1 350px;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    color: #bcbcbc;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.about-highlight {
    background: #1f1f1f;
    padding: 30px;
    border-radius: 30px;
    border-left: 6px solid var(--gold);
    font-style: italic;
    color: #ddd;
}

.about-image {
    margin: 2px auto;
}

.about-image img {
    height: 290px;
    width: 390px;
    border-radius: 20px;
    object-fit: cover;
}

/* services grid */
.service {
    padding-top: 60px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 2px;
    border-radius: 40px;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    margin: 40px 0 60px;
}

.service-card {
    background: #121212;
    border: 1px solid #2b2b2b;
    border-radius: 30px;
    padding: 35px 25px;
    transition: 0.2s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
}

/* 🔥 ADD THIS */
.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* bullet points */
.service-card ul {
    margin-top: 10px;
    padding-left: 18px;
    color: #bbb;
    font-size: 0.9rem;
}

.service-card ul li {
    margin-bottom: 5px;
}

/* why choose us */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 50px 0;
}

.why-item {
    background: #161616;
    border-radius: 100px;
    padding: 15px 35px;
    border: 1px solid #3b3b3b;
    font-weight: 500;
    color: #eee;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.why-item i {
    color: var(--gold);
    margin-right: 10px;
}

/* process steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
    counter-reset: step;
}

.step {
    background: #1a1a1a;
    border-radius: 60px;
    padding: 15px 30px;
    min-width: 170px;
    text-align: center;
    border: 1px solid #333;
    font-weight: 600;
    color: var(--gold);
    counter-increment: step;
    position: relative;
}

.step:before {
    content: counter(step) ".";
    font-weight: 800;
    color: var(--gold);
    margin-right: 6px;
    font-size: 1.2rem;
}

/* projects / partners */
.projects-show {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.project-badge {
    width: 220px;
    background: #1d1d1d;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #5c501f;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* FIXED IMAGE BOX */
.project-badge img {
    width: 100%;
    height: 140px;
    /* 🔥 same height for all */
    object-fit: cover;
    /* 🔥 crops properly */
    display: block;
}

/* TEXT */
.project-badge span {
    display: block;
    padding: 15px;
    color: var(--gold-light);
    font-weight: 600;
}

/* Hover */
.project-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(200, 169, 81, 0.2);
}

/* sales team */
.sales-team {
    width: 100%;
    /* full width of container */
    max-width: 600px;
    /* optional max width */
    margin: 0 auto;
    /* center horizontally */
    text-align: center;
    /* center image if smaller */
}

.sales-team img {
    width: 100%;
    /* scale to container width */
    height: auto;
    /* keep aspect ratio */
    object-fit: contain;
    /* prevent cropping */
    border-radius: 12px;
    /* smooth corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* hover effect */
}

.sales-team img:hover {
    transform: translateY(-5px) scale(1.02);
    /* subtle hover lift */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .sales-team {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .sales-team img {
        border-radius: 8px;
    }
}

/* testimonials */
/* .testimonial-card {
    background: #141414;
    border-radius: 50px;
    padding: 40px;
    max-width: 750px;
    margin: 30px auto;
    border: 1px solid #3f351a;
    text-align: center;
}

.testimonial-card i {
    color: var(--gold);
    font-size: 2rem;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 1.4rem;
    color: #ddd;
    font-style: italic;
    margin: 20px 0;
}

.client-name {
    color: var(--gold);
    font-weight: 700;
} */

/* CTA section */
.cta-block {
    background: #0f0f0f;
    border-radius: 80px;
    padding: 70px 30px;
    text-align: center;
    border: 1px solid #4d401e;
    margin: 60px 0;
}

.cta-block h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-block h2 i {
    color: var(--gold);
}

/* contact form */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0 30px;
}

.contact-info {
    flex: 1 1 250px;
}

.contact-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #ccc;
}

.info-line i {
    color: var(--gold);
    width: 30px;
    font-size: 1.3rem;
}

.contact-form {
    flex: 2 1 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-full {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    background: #1c1c1c;
    border: 1px solid #3a3a3a;
    padding: 16px 20px;
    border-radius: 60px;
    color: white;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    border-radius: 30px;
    resize: vertical;
}

.contact-form button {
    grid-column: span 2;
    background: var(--gold);
    color: black;
    font-weight: bold;
    border: none;
    padding: 16px;
    border-radius: 60px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid var(--gold);
}

.contact-form button:hover {
    background: transparent;
    color: var(--gold);
}

/* footer */
.footer {
    border-top: 1px solid #2d2d2d;
    padding: 40px 0;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.social a i {
    color: var(--gold);
    font-size: 1.8rem;
    transition: 0.2s;
    margin: 0 10px;
}

.social a i:hover {
    color: white;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-right: 30px;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    margin: 80px 0;
    padding: 20px 0;
}

.client-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: black;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.client-card {
    background: #121212;
    border: 1px solid #2b2b2b;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.3s;
}

.client-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.1);
}

/* Enhanced client logo styles */
.client-logo {
    background: #1a1a1a;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #2b2b2b;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.client-card:hover .client-logo img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.client-card:hover .client-logo {
    position: relative;
}

.client-card:hover .client-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 169, 81, 0.1);
    pointer-events: none;
}

.client-details {
    padding: 8px 10px;
}

.client-details h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1px;
}

.client-location {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1px;
}

.client-location i {
    color: var(--gold);
    margin-right: 8px;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 1px;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1px;
}

.stat-value {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.project-desc {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 1px;
    line-height: 1.6;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #1a1a1a;
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid #3a3a3a;
}

.clients-new {
    padding: 5px 5%;
    background: #0f0f0f;
    color: #fff;
    border-radius: 40px;
}

/* Builder Row */
.builder-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Builder Info */
.builder-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
}

.builder-info img {
    width: 150px;
    height: 70px;
    object-fit: contain;

}

.builder-info h3 {
    font-size: 20px;
    font-weight: 600;
}

/* Arrow */
.arrow i {
    font-size: 24px;
    color: var(--gold);
}

/* Projects */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Project Card */
.project-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.project-card h4 {
    margin-bottom: 8px;
    color: var(--gold);
}

.project-card p {
    font-size: 14px;
    color: #bbb;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* Responsive */
@media(max-width: 768px) {
    .builder-row {
        grid-template-columns: 1fr;
    }

    .arrow {
        display: none;
    }

    .projects {
        width: 100%;
    }

    .service-card img {
        height: 180px;
    }
}

.client-summary {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0 20px;
    padding: 40px;
    background: linear-gradient(145deg, #151515, #1f1f1f);
    border-radius: 50px;
    border: 1px solid #3a3a3a;
}

.summary-item {
    text-align: center;
}

.summary-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.summary-label {
    display: block;
    color: #aaa;
    font-size: 1rem;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* hide desktop nav, show hamburger */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* adjust navbar for mobile */
    .navbar {
        padding: 15px 20px;
    }

    /* hide desktop phone button on mobile */
    .desktop-phone {
        display: none;
    }

    /* mobile menu (hidden by default, toggled by JS) */
    .mobile-menu.show {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero {
        display: flex;
        flex-direction: column;
        /* stack items */
    }

    .hero-image {
        position: static;
        /* 🔥 key change */
        margin-top: 30px;
        text-align: center;
    }

    .hero-image img {
        height: 250px;
    }

    .about-image img {
        height: 235px;
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
    }

    .input-full {
        grid-column: span 1;
    }

    .footer {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 0;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-links a {
        margin-right: 0;
    }

    .social {
        margin-top: 5px;
    }

    .social a i {
        margin-left: 0 !important;
        margin: 0 10px !important;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-summary {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .summary-number {
        font-size: 2rem;
    }
}

/* ===== HERO RESPONSIVE ===== */

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }


    .hero-image img {
        height: 160px;
    }

    .about-image img {
        height: 200px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .service-card img {
        height: 160px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 80px 40px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }
    .hero-image img {
        height: 200px;
    }

}

/* 
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        height: auto; 
        min-height: auto;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin: 20px auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }


    .hero-badge,
    .tagline-gold {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        transform: none !important;
        animation: none !important;
        margin-top: 20px;
    }

    .hero-image:hover {
        transform: none !important;
    }

    .hero-image img {
        height: 200px;
        max-width: 280px;
    }
} */

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-buttons a {
    text-decoration: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.call-btn {
    background-color: #2c3e50;
}

.call-btn:hover {
    background-color: #1a252f;
}

.floating-btn i {
    margin-top: 5px;
}
@media (max-width: 768px) {
    .go-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .floating-btn {
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}