/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* body text premium font only */
}

/* ================= PAGE ================= */
/* ================= PAGE ================= */
html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    background-color: #FEFEEA;
}

img {
    max-width: 100%;
}

/* ================= WRAPPER ================= */
.menu-wrapper {
    max-width: 820px;
    margin: auto;
    position: relative;
}

header.menu-wrapper {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    padding: 10px 20px 0;
    /* spacing from page */
}

/* ================= TOP BAR ================= */
.menu-bar {
    background: #034E45;
    color: #fff;
    border-radius: 60px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Manrope', sans-serif;
}

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
}

.logo img {
    height: 40px;
    /* background: transparent; */
    /* filter: brightness(0) invert(1); */
    /* background-color: #fff; */
    border-radius: 20px;
    filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
    /* Sharp white outline */
}

/* ================= HAMBURGER ================= */
.hamburger {
    width: 28px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    border-radius: 2px;
}

/* ================= MENU CONTAINER ================= */
.menu-content {
    background: #034E45;
    margin-top: 18px;
    border-radius: 56px;
    padding: 34px;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    /* NEW FIX */
    /* overlay on top without pushing content */
    position: absolute;
    /* MUST use this */
    top: 100%;
    /* directly below menu-bar */
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 999;

}

/* ================= GRID ================= */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 26px;
}

/* ================= MENU ITEMS ================= */
.menu-item {
    background: #FAA746;
    /* soft lemon */
    color: #0B0B0B;
    border-radius: 40px;
    padding: 30px 36px;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Manrope', sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ================= ICONS ================= */
.menu-item img {
    width: auto;
    height: 100px;
}

/* ================= CTA ================= */
.menu-item.full {
    justify-content: center;
    gap: 20px;
    font-size: 32px;
    padding: 36px;
    font-family: 'Montserrat', sans-serif;
}

/* ================= HOVER ================= */
.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    background: #FEFEEA;
    cursor: pointer;
}

/* ================= FADE UP ANIMATION ================= */
/* ================= MENU ANIMATION ================= */
.menu-content {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Menu open */
.menu-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ================= ITEMS FADE UP ================= */
.menu-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.menu-content.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.menu-content.active .menu-item:nth-child(1) {
    transition-delay: 0.2s;
}

.menu-content.active .menu-item:nth-child(2) {
    transition-delay: 0.3s;
}

.menu-content.active .menu-item:nth-child(3) {
    transition-delay: 0.4s;
}

/* ================= HERO SECTION ================= */
.hero-container {
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-small {
    font-size: 25px;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}

.hero-main {
    font-size: 48px;
    font-weight: 700;
    color: #0B0B0B;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Manrope', sans-serif;
}

.hero-sub {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* ================= HERO TAGS ================= */


.hero-cta {
    margin-top: 36px;
    padding: 16px 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F2A23A, #FFB44A);
    color: #0b3d34;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(242, 162, 58, 0.35);
    transition: all 0.35s ease;
    position: relative;
    z-index: 5;
    font-family: 'Montserrat', sans-serif;
}

.hero-cta:hover {
    transform: translateY(-4px);
    background: #0b3d34;
    color: #fff;

    box-shadow:
        0 22px 50px rgba(11, 61, 52, 0.45),
        0 8px 18px rgba(11, 61, 52, 0.35);
}

.hero-section {
    padding: 140px 20px 200px;
    /* Increased bottom padding to 200px to clear marquee */
    position: fixed;
    /* Fixed as requested */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    /* Behind other content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-layout {
    max-width: 1200px;
    width: 100%;
    /* Ensure full width on smaller screens */
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.hero-left {
    text-align: left;
}

/* RIGHT CAROUSEL */
.hero-right {
    position: relative;
    height: 420px;
    width: 420px;
    /* Fixed width for perfect circle on Desktop */
    margin: 0 auto;
    /* Center in grid column */
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    /* Ensure container is also circular if it clips */
}

.carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Static State - Animation Removed */
    opacity: 1;
    border-radius: 50%;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right {
        height: 320px;
    }
}

/* ================= HERO TEXT ENHANCEMENTS ================= */

/* Make "We Bring" strong & dominant */
.hero-bold {
    display: block;
    font-size: 66px;
    font-weight: 900;
    line-height: 1.05;
    color: #0B0B0B;
}

/* Rest of the heading slightly lighter */
.hero-main {
    font-size: 66px;
    font-weight: bolder;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* Highlight phrase in subtext */
.hero-highlight {
    color: #034E45;
    font-weight: 600;
    position: relative;
}

/* Subtle underline highlight */
.hero-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 6px;
    background: rgba(250, 167, 70, 0.35);
    z-index: -1;
    border-radius: 6px;
}

/* Improve readability */
.hero-sub {
    max-width: 520px;
    font-size: 19px;
    line-height: 1.7;
}

/* ================= OUTLINE MARQUEE SECTION ================= */

.keyword-marquee {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1;
    /* Above hero (0) but cleared by padding */
    overflow: hidden;
    /* Prevent marquee from causing scrollbar */
    pointer-events: none;
    /* Ensure marquee doesn't block hero button clicks if they overlap */
}

/* Row base */
.marquee-row {
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    /* Performance optimization */
}

/* Outline text style */
.marquee-row span {
    font-family: sans-serif;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0px;
    padding-right: 20px;
    color: transparent;
    -webkit-text-stroke: 2px #0B0B0B;
    text-transform: uppercase;
}

/* Top line → left */
.marquee-left {
    animation: marquee-left 45s linear infinite;
}

/* Bottom line → right */
.marquee-right {
    animation: marquee-right 45s linear infinite;
    /* margin-top: 24px; */
}

/* Animations */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .marquee-row span {
        font-size: 36px;
        -webkit-text-stroke: 1.5px #0B0B0B;
    }
}

/* Wrapper (relative) */
.sticky-container {
    position: relative;
}

/* Base sticky slide */
.sticky-slide {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}




/* Slide 1 gradient (green-200 → blue-200) */
.slide-one {
    background: linear-gradient(to bottom,
            #bbf7d0,
            /* green-200 */
            #bfdbfe
            /* blue-200 */
        );
    color: #000;
}

/* Slide 2 gradient (indigo-800 → purple-800) */



/* Slide background */
.slide-two {
    /* Margin removed to fix double scroll gap */
    z-index: 2;
    /* Slide over hero */
    position: sticky;
    top: 0;
    background: #2F5D50;
    color: #FEFEEA;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    /* justify-content: center; */

}

.slide-two-header {
    text-align: center;
    max-width: 760px;
    margin-bottom: 80px;
}

/* INITIAL STATE (small) */
.zoom-title,
.zoom-text {
    transform-origin: top center;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* TITLE ACTIVE (comes first) */
.zoom-title.active {
    transform: scale(1);
    opacity: 1;
}

/* TEXT ACTIVE (comes later) */
.zoom-text.active {
    transform: scale(1);
    opacity: 1;
}

/* Typography */
.zoom-title {
    font-size: 80px;
    font-weight: 800;
    /* margin-bottom: 16px; */
}

.works-subtitle {
    font-size: 18px;
    max-width: 640px;
    /* margin: auto; */
    line-height: 1.6;
}

/* SECTION */
.latest-works {
    padding: 120px 40px;
    background: #FEFEEA;
    text-align: center;
}

.works-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: #0B0B0B;
}

/* ROW */
.works-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 28px;
    max-width: 1000px;
    margin: auto;
    width: 100%;
    margin-bottom: 80px;
    padding: 0 20px;
}

.works-row .work-card-new {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 200px;
}

/* ================= NEW CLEAN CARD STYLE ================= */
.work-card-new {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    min-height: 160px;
}

.work-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.work-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    padding: 10px 0;
}

.work-logo-new {
    max-height: 70px;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.work-card-new:hover .work-logo-new {
    transform: scale(1.08);
}

.work-card-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 12px;
    letter-spacing: 0.3px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* CARD BASE */
.work-card {
    border-radius: 32px;
    padding: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* HEADER */
.work-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work-logo {
    height: 40px;
}

.work-place {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
}

/* IMAGE */
.work-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

/* DESCRIPTION */
.work-desc {
    font-size: 16px;
    line-height: 1.6;
}

/* BUTTON */
.work-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ================= COLOR VARIANTS ================= */

/* GREEN PROJECT */
.work-green {
    background: #B86B57;
    /* keep section background */
}

.work-green .work-btn {
    background: #EAD7CF;
    color: #4B2A22;
    border: none;
}

.work-green .work-btn:hover {
    background: #DFC0B6;
    /* darker shade for hover */
}


/* ORANGE PROJECT */
.work-orange {
    background: #fcf9da;
    color: #000;
}

.work-orange .work-btn {
    background: #F2A23A;
    color: #000;
}

.work-orange .work-btn:hover {
    background: #E48F1F;
}

/* BLUE PROJECT */
.work-blue {
    background: #E8F0FF;
    color: #000;
}

.work-blue .work-btn {
    background: #2C4ED8;
    color: #fff;
}

.work-blue .work-btn:hover {
    background: #1E36A8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .works-row {
        gap: 20px;
        justify-content: center;
    }

    .works-row .work-card-new {
        flex: 0 1 calc(50% - 12px);
        min-width: 160px;
    }

    .work-card-new {
        min-height: 130px;
        padding: 24px 20px 16px;
    }

    .work-logo-new {
        max-height: 55px;
    }
}

@media (max-width: 500px) {
    .works-row {
        gap: 16px;
        justify-content: center;
    }

    .works-row .work-card-new {
        flex: 0 1 calc(50% - 10px);
        min-width: 130px;
    }

    .work-card-new {
        min-height: 110px;
        padding: 20px 16px 14px;
    }

    .work-logo-new {
        max-height: 45px;
        max-width: 120px;
    }

    .work-card-label {
        font-size: 12px;
    }
}


/* PURPLE PROJECT */
.work-purple {
    background: #EFE9FF;
    color: #000;
}

.work-purple .work-btn {
    background: #6B4EFF;
    color: #fff;
}

.work-purple .work-btn:hover {
    background: #563CD6;
}

/* RED PROJECT */
.work-red {
    background: #FFECEC;
}

.work-red .work-btn {
    background: #E63946;
    color: #fff;
}

.work-red .work-btn:hover {
    background: #C92D3A;
}

/* GREY PROJECT */
.work-grey {
    background: #F2F2F2;
}

.work-grey .work-btn {
    background: #2B2B2B;
    color: #fff;
}

.work-grey .work-btn:hover {
    background: #111;
}

/*  */

/* Services Section */
.services-section {
    background: #FEFEEA;
    padding: 140px 40px;
    /* padding-top: 140px; */
    position: relative;
    z-index: 20;
}

/* Header */
.services-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 100px;
}

.services-title {
    font-size: 80px;
    font-weight: 800;
    color: #0B0B0B;
    /* margin-bottom: 20px; */
}

.services-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Service Row */
.service-row {
    max-width: 1200px;
    margin: 0 auto 140px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Reverse layout */
.service-row.reverse {
    direction: rtl;
}

.service-row.reverse>* {
    direction: ltr;
}

/* Content */
.service-content h3 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    /* margin-bottom: 20px; */
    color: #444;
}

/* ================= SECTION CTA ================= */
.section-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

.section-cta {
    display: inline-block;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #034E45;
}

/* Image */
.service-image img {
    width: 100%;
    border-radius: 32px;
    background: transparent;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 1.6s ease,
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.service-image {
    transition-delay: 0.2s;
}

/* Color variants */
.service-green {
    background: #DFF3EC;
}

.service-orange {
    background: #FFF0DA;
}

.service-blue {
    background: #E8F0FF;
}

/* Responsive */
@media (max-width: 900px) {
    .services-row {
        grid-template-columns: 1fr;
    }
}


/* NEW sticky context */
.services-sticky-wrapper {
    position: relative;
    height: auto;
    /* controls scroll length */
}

/* Sticky services section */
.services-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
    background: #FEFEEA;
    padding: 140px 40px;
}

/* ONLY this section is sticky */
.work-says-sticky {
    position: sticky;
    /* ❗ changed from sticky */
    min-height: auto;
    top: 0;
    min-height: 100vh;
    padding: 60px 20px;
    background: #2F5D50;
    color: #FEFEEA;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.work-says-title {
    font-size: 80px;
    font-weight: 800;
    /* max-width: 900px; */
}

.services-section,
.work-says-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
}

/* Services Section */

.testimonials-header {
    text-align: center;
    margin: 0 auto 80px;
    /* max-width: 760px; */
}

.testimonials-section {
    background: #2F5D50;
    padding: 140px 40p 20px;
    /* padding-top: 140px; */
    position: relative;
    z-index: 20;
}

.testimonials-title {
    font-size: 80px;
    /* reduced from 80px */
    font-weight: 800;
    color: #FEFEEA;
    margin-bottom: 10px;
}

/* Subtitle */
.testimonials-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #FEFEEA;
    max-width: 700px;
    /* smaller width to center nicely */
    margin: 0 auto;
    text-align: center;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* 🔥 space between cards */
}



/* ============================= */
/* TESTIMONIALS LIST */
/* ============================= */

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* space between cards */
    padding: 60px 0;
}


/* ============================= */
/* TESTIMONIAL CARD */
/* ============================= */

.testimonial-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Ensure equal height alignment */

    background: #E48F1F;
    border-radius: 28px;
    padding: 32px 40px;

    max-width: 1200px;
    margin: 0 auto;
    min-height: 260px;
}


/* ============================= */
/* IMAGE + REVIEW ROW */
/* ============================= */

.testimonial-author {
    display: flex;
    align-items: flex-start;
    /* Align text to top of avatar */
    gap: 20px;
    max-width: 70%;
}

/* Even card: Reverse layout so avatar is on right */
.testimonial-card:nth-child(even) .testimonial-author {
    flex-direction: row-reverse;
    text-align: right;
    /* Ensure text aligns to the right */
}


/* ============================= */
/* AUTHOR IMAGE */
/* ============================= */

.author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}


/* ============================= */
/* REVIEW TEXT */
/* ============================= */

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
}


/* ============================= */
/* AUTHOR INFO (BOTTOM SIDE) */
/* ============================= */

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    white-space: nowrap;
}


/* Name */
.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

/* Position */
.author-position {
    font-size: 14px;
    opacity: 0.8;
    color: #ffffff;
}


/* ============================= */
/* EVEN CARD (REVERSED LAYOUT) */
/* ============================= */

.testimonial-card:nth-child(even) {
    flex-direction: row-reverse;
}

.testimonial-card:nth-child(even) .author-info {
    text-align: left;
}


/* ============================= */
/* RESPONSIVE (MOBILE FIX) */
/* ============================= */

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        min-height: auto;
    }

    .testimonial-author {
        max-width: 100%;
    }

    .author-info {
        text-align: left;
    }

    .testimonial-card:nth-child(even) {
        flex-direction: column;
    }
}

/* ================= STICKY END FIX ================= */


/* ================= CONTACT SECTION ================= */
.contact-section {
    position: relative;
    z-index: 50;
    background: #FEFEEA;
    background: #FEFEEA;
    padding: 160px 20px 60px;
    /* Fixed typo 6 0px -> 60px */
}

.contact-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact-title {
    font-size: 72px;
    font-weight: 900;
    color: #0B0B0B;
    /* margin-bottom: 20px; */
}

.contact-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
    padding: 18px;
    border-radius: 999px;
    border: none;
    background: #FAA746;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #fefeea;
    transform: translateY(-3px);
    color: #000;
}

.contact-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-split {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* gap: 91px; */
    /* background: #ffffff; */
    border-radius: 40px;
    padding: 12px;
}

/* LEFT */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
}

.add {
    gap: 50px;
    display: flex;
    flex-direction: column;
}

.contact-brand {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-block h4 {
    font-size: 20px;
    font-weight: 700;
}

.info-block p {
    font-size: 18px;
    color: #555;
}

.info-block span {
    font-size: 18px;
    font-weight: 600;
    color: #034E45;
}

.info-block img {
    width: 28px;
}

/* RIGHT FORM */
.contact-form-box {
    background: #2F5D50;
    border-radius: 32px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row input,
.form-row .phone-group {
    flex: 1;
    margin-bottom: 0;
    width: 100%;
}

.contact-title-box {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #FEFEEA;
}

.contact-subtitle-box {
    font-size: 15px;
    margin-bottom: 20px;
    color: #fefeea;
}

.contact-form-box input,
.contact-form-box textarea {
    background: #FEFEEA;
    border: none;
    outline: none;
}


/* ================= SOCIAL ICONS ================= */
.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    background: #2F5D50;
    /* Green background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-socials img {
    width: 18px;
    filter: invert(1);
    /* Make icon white (assuming black SVG) */
    transition: filter 0.3s ease;
}

.contact-socials a:hover {
    transform: translateY(-4px);
    background: #FAA746;
    /* Orange ("Let's start" button color) */
    box-shadow: 0 5px 15px rgba(250, 167, 70, 0.4);
}

.contact-socials a:hover img {
    filter: invert(0);
    /* Make icon black */
}

/* ================= OPTIONS ================= */
.contact-options {
    margin: 30px 0 40px;
}

.contact-options p {
    color: #FEFEEA;
    font-size: 14px;
    margin-bottom: 14px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
}

.options-grid label {
    font-size: 14px;
    color: #FEFEEA;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px;
    }
}

/* ================= 4K / LARGE SCREENS (Min 1600px) ================= */
@media (min-width: 1600px) {

    .menu-wrapper,
    .contact-split,
    .hero-layout,
    .works-row,
    .service-row {
        max-width: 1600px;
    }

    .hero-main,
    .hero-bold {
        font-size: 80px;
    }

    .hero-sub {
        font-size: 24px;
    }

    .zoom-title {
        font-size: 90px;
    }

    .work-card {
        padding: 40px;
    }

    .work-image {
        height: 300px;
    }

    .services-title,
    .testimonials-title,
    .work-says-title {
        font-size: 90px;
    }
}

.author-initial {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #034E45;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    margin-top: 4px;
    /* Optical alignment with text cap-height */
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.call-btn {
    background: #034E45;
    /* Dark Green */
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
}

.float-btn svg {
    width: 28px;
    height: 28px;
    /* fill: #fff; Removed to allow SVG attributes to control fill/stroke */
    /* stroke: #fff; Removed to allow SVG attributes to control fill/stroke */
}