:root {
    --primary: #0A3C2A;       /* Deep rich dark green */
    --primary-light: #16563F; /* Brighter dark green */
    --secondary: #F6A33C;     /* Vibrant golden orange */
    --secondary-hover: #D78A2A; 
    --bg-light: #F8F9F3;      /* Very subtle greenish off-white */
    --text-main: #34403B;
    --text-light: #67756F;
    --white: #ffffff;
    --border: #E8EAE2;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-xl: 30px;
    --shadow: 0px 20px 40px rgba(10, 60, 42, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: clip; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.text-accent {
    color: var(--secondary);
}

.mt-4 {
    margin-top: 2rem;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UTILITIES */
.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    background: #E8F5EE;
    padding: 6px 16px;
    border-radius: 50px;
}

.subtitle i {
    color: var(--secondary);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* TOP BAR */
.top-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 25px;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-left i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.top-right {
    display: flex;
    gap: 15px;
}

.top-right a:hover {
    color: var(--secondary);
}

/* HEADER */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.logo i {
    color: var(--secondary);
    font-size: 2.2rem;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    color: var(--primary);
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-box .icon {
    width: 48px;
    height: 48px;
    background: #E8F5EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-box .text {
    display: flex;
    flex-direction: column;
}

.contact-box .label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-box .number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    white-space: nowrap;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.pattern-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background-image: radial-gradient(var(--border) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.hero-features i {
    color: var(--secondary);
    font-size: 1.4rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-area {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-image {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 320px;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 10px solid var(--bg-light);
    box-shadow: var(--shadow);
}

.sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--secondary);
    animation: float 4s ease-in-out infinite;
}

.experience-badge i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.experience-badge .exp-text {
    display: flex;
    flex-direction: column;
}

.experience-badge strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ABOUT SECTION */
.about {
    padding: 120px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-images .img-1 {
    border-radius: var(--radius-xl);
    width: 85%;
}

.about-images .img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: var(--radius-md);
    border: 10px solid var(--white);
}

.circle-stamp {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(234, 166, 54, 0.4);
}

.about-content h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.stat-box {
    display: flex;
    gap: 15px;
}

.stat-box .icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-box h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}


/* SERVICES */
.services {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.services .section-top {
    margin-bottom: 60px;
}

.services .section-top h2 {
    font-size: 3.2rem;
}

.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
    padding: 10px;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.service-card .img-wrap {
    position: relative;
    border-radius: var(--radius-sm);
    height: 250px;
}

.service-card .img-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.service-card .img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .img-inner img {
    transform: scale(1.08);
}

.icon-bubble {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 10;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(246, 163, 60, 0.3);
}

.card-content {
    padding: 40px 30px 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: var(--secondary);
}

/* WHY US / COUNTERS */
.why-us {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.why-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.features-list .feat {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.features-list i {
    font-size: 2rem;
}

.features-list h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.features-list p {
    font-size: 1rem;
    margin-bottom: 0;
}

.fun-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fact-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.fact-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.fact-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.fact-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.fact-title {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}


/* PROCESS SECTION */
.process {
    padding: 100px 0;
    position: relative;
    background-color: var(--white);
}

.process h2 {
    font-size: 3.2rem;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: dashed 2px var(--border);
    z-index: 0;
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.process-step .step-num {
    position: absolute;
    top: -25px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(246, 163, 60, 0.15); /* secondary faded */
    line-height: 1;
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* PROJECTS SECTION */
.projects {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.projects h2 {
    font-size: 3.2rem;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.08); /* Zoom effect */
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: left;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
}

.project-overlay p {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testi-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.testi-text {
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 30px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testi-author .avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testi-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testi-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ SECTION */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-img {
    border-radius: var(--radius-xl);
    margin-top: 30px;
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.faq-left h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.faq-left p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-accordion .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary);
}

.faq-item.active .faq-question h4,
.faq-item.active .faq-question i {
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 300px; /* Big enough to fit content */
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-image: url('images/hero_landscape_1775155505435.png'); /* re-use hero logic */
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 42, 0.85); /* Overlay */
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-block h2 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.contact-info-block > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ci-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ci-text h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.ci-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    position: relative;
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1EBD5A;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: 50px;
}

/* FOOTER */
.footer {
    background-color: #052217;
    color: rgba(255,255,255,0.7);
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col.brand p {
    margin: 25px 0;
    font-size: 1.05rem;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--white);
}

.socials a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.cw {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cw i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.cw strong {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 1rem;
}

/* FLOATING ACTIONS */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.scroll-top-btn {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    margin-left: auto;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.float-wa-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
    transition: var(--transition);
}

.float-wa-btn:hover {
    transform: translateY(-4px);
    background-color: #1EBD5A;
    color: var(--white);
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    font-size: 2.2rem;
    color: var(--primary);
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .sub-image {
        display: none;
    }
    .experience-badge {
        right: 20px;
        bottom: 20px;
        top: auto;
    }
    .about-images .img-2 {
        display: none;
    }
    .about-images .img-1 {
        width: 100%;
    }
    .circle-stamp {
        right: 15px;
        width: 110px;
        height: 110px;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        display: none;
        border-top: 1px solid var(--border);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        padding: 15px 30px;
        display: block;
        font-size: 1.2rem;
        border-left: 3px solid transparent;
    }
    .nav-menu a:hover {
        background: var(--bg-light);
        border-left-color: var(--secondary);
    }
    .nav-menu a::after {
        display: none;
    }
    .header-action .contact-box, .header-action .btn {
        display: none;
    }

    .hero-wrapper, .about-wrapper, .why-wrapper, .faq-wrapper, .cta-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid, .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3.2rem;
    }
    .main-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .top-bar, .d-mobile-none {
        display: none !important;
    }
    .services-grid, .process-grid, .testi-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .fun-facts {
        grid-template-columns: 1fr;
    }
    .about-content h2, .services .section-top h2, .why-content h2, .cta-box h3, .contact-info-block h2, .projects h2, .testimonials h2, .faq-left h2, .process h2 {
        font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 60px 0 80px;
    }
    .main-image {
        height: 350px;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .projects, .testimonials, .why, .services, .about, .process, .faq, .cta-section {
        padding: 70px 0;
    }
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    .logo img {
        max-width: 170px !important;
        height: auto;
    }
    .experience-badge {
        padding: 15px;
        gap: 10px;
        right: 15px;
        bottom: 15px;
        max-width: 85%;
    }
    .experience-badge i { font-size: 2rem; }
    .experience-badge strong { font-size: 1.5rem; }
    .project-card {
        height: 280px;
    }
    .btn-whatsapp {
        padding: 15px 25px;
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
