* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --brown: #5d4037;
    --gold: #f9a825;
    --green: #2e7d32;
    --cream: #fffde7;
    --dark: #3e2723;
    --light-gold: #fff3e0;
    --light-beige: #fff8e1;
    --light-green: #f1f8e9;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
    color: var(--brown);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP STRIP */
.top-strip {
    background: linear-gradient(110deg, #1b5e20 0%, #2e7d32 55%, #388e3c 100%);
    color: #fff;
    font-size: 0.82rem;
    position: relative;
    overflow: hidden;
}
.top-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 6 C16 12,12 16,6 20 C12 24,16 28,20 34 C24 28,28 24,34 20 C28 16,24 12,20 6 Z' fill='none' stroke='%23ffffff' stroke-width='.6' opacity='.1'/></svg>");
    opacity: 0.5;
    pointer-events: none;
}
.top-strip-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ts-info {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.ts-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    transition: 0.3s;
}
.ts-item:hover {
    transform: translateY(-1px);
}
.ts-item:hover b {
    color: var(--gold);
}
.ts-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}
.ts-item span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.ts-item small {
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.ts-item b {
    font-size: 0.84rem;
    font-weight: 600;
    transition: 0.3s;
}
.ts-socials {
    display: flex;
    gap: 8px;
}
.ts-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: 0.3s;
}
.ts-socials a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px) rotate(8deg);
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 24px rgba(62, 39, 35, 0.08);
    z-index: 1000;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 24px;
}
.nav-logo img {
    height: 64px;
    transition: 0.3s;
}
.nav-logo:hover img {
    transform: scale(1.04);
}
.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    transition: 0.3s;
    font-size: 16px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}
.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.nav-enquire {
    background: var(--dark);
    color: var(--gold) !important;
    padding: 10px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 0.5px;
    font-size: 14px;
    white-space: nowrap;
}
.nav-enquire:hover {
    background: var(--gold);
    color: var(--dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 39, 35, 0.25);
}
.cta-btn {
    background: var(--gold);
    color: var(--brown);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}
.cta-btn:hover {
    background: var(--brown);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 39, 35, 0.2);
}
.cta-outline {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}
.cta-outline:hover {
    background: var(--brown);
    color: var(--cream);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--brown);
    border-radius: 2px;
    transition: 0.3s;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--light-beige);
    padding: 0;
}
.slides {
    position: relative;
    width: 100%;
}
.slide {
    display: none;
    width: 100%;
}
.slide.active {
    display: block;
    animation: fade 0.9s ease;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--light-beige);
}
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--brown);
    z-index: 5;
    transition: 0.3s;
}
.slide-nav:hover {
    background: var(--gold);
    color: #fff;
}
.slide-prev {
    left: 20px;
}
.slide-next {
    right: 20px;
}
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(93, 64, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* TRUST BAR */
.trust {
    background: #8e3801;
    color: var(--cream);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.trust::before,
.trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.trust::before {
    left: 0;
    background: linear-gradient(90deg, #8e3801, transparent);
}
.trust::after {
    right: 0;
    background: linear-gradient(-90deg, #8e3801, transparent);
}
.trust-track {
    display: flex;
    width: max-content;
    animation: trust-scroll 30s linear infinite;
}
.trust:hover .trust-track {
    animation-play-state: paused;
}
.trust-wrap {
    display: flex;
    gap: 50px;
    font-size: 17px;
    font-weight: 500;
    padding-right: 50px;
    flex-shrink: 0;
}
.trust-wrap span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
@keyframes trust-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
section {
    padding: 50px 0;
}
.section-head {
    text-align: center;
    margin-bottom: 32px;
}
.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 10px;
    font-size: 33px0;
}
.section-head .sub {
    color: var(--green);
    font-style: italic;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
}
.section-head .subs {
    color: var(--green);
    font-style: italic;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
}
.section-head .line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ABOUT */
.about {
    background: #fff;
    position: relative;
}
.eyebrow {
    display: inline-block;
    color: #29b3b3;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-media .ams-1 {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 25px 50px rgba(93, 64, 55, 0.15);
    animation: aboutFloat 6s ease-in-out infinite;
    transition: transform 0.6s ease;
}
.about-media:hover .ams-1 {
    transform: scale(1.03) rotate(-1deg);
}
.ams-years {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--brown);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
    transform: rotate(-6deg);
    text-align: center;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes aboutFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes badgePulse {
    0%,
    100% {
        transform: rotate(-6deg) scale(1);
        box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
    }
    50% {
        transform: rotate(-6deg) scale(1.08);
        box-shadow: 0 18px 40px rgba(218, 165, 32, 0.6);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-6deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(-6deg);
    }
}
.about.visible .about-media {
    animation: slideInLeft 0.9s ease both;
}
.about.visible .about-main > * {
    animation: slideInRight 0.8s ease both;
}
.about.visible .about-main .eyebrow {
    animation-delay: 0.1s;
}
.about.visible .about-main h2 {
    animation-delay: 0.2s;
}
.about.visible .about-main p:nth-of-type(1) {
    animation-delay: 0.3s;
}
.about.visible .about-main p:nth-of-type(2) {
    animation-delay: 0.4s;
}
.about.visible .about-main .about-points {
    animation-delay: 0.5s;
}
.about.visible .about-main .about-cta {
    animation-delay: 0.65s;
}
.about.visible .ams-years {
    animation:
        popIn 0.7s ease 0.6s both,
        badgePulse 3s ease-in-out 1.3s infinite;
}
.about-points li {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s ease;
}
.about.visible .about-points li {
    opacity: 1;
    transform: none;
}
.about.visible .about-points li:nth-child(1) {
    transition-delay: 0.7s;
}
.about.visible .about-points li:nth-child(2) {
    transition-delay: 0.85s;
}
.about.visible .about-points li:nth-child(3) {
    transition-delay: 1s;
}
.about-points li:hover .tick {
    transform: scale(1.2) rotate(360deg);
    background: var(--gold);
    transition: 0.5s;
}
.about-cta {
    transition: all 0.3s ease;
}
.about-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.ams-years b {
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}
.ams-years span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    padding: 0 10px;
}
.about-main h2 {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    line-height: 1.2;
    margin-bottom: 22px;
}
.about-main h2 .hl {
    color: var(--green);
    position: relative;
    display: inline-block;
}
.about-main h2 .hl::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 10px;
    background: rgba(218, 165, 32, 0.35);
    z-index: -1;
    border-radius: 4px;
}
.about-main p {
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}
.about-points {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
}
.about-points li {
    padding: 8px 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}
.about-points .tick {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.about-cta {
    display: inline-block;
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.stat {
    background: var(--light-beige);
    padding: 20px 14px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    transition: 0.3s;
}
.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(93, 64, 55, 0.15);
}
.stat b {
    display: block;
    font-size: 1.6rem;
    color: var(--brown);
    font-family: "Poppins", sans-serif;
}
.stat small {
    font-size: 0.85rem;
    color: #666;
}

/* PRODUCTS */
.products {
    background: #fdef5585;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.p-card {
    background: #fff;
    border-radius: 18px;
    padding: 0 0 28px;
    text-align: left;
    transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.15);
}
.p-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #fbf7f0;
}
.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.p-card:hover .p-img img {
    transform: scale(1.08);
}
.p-card > h3,
.p-card > p,
.p-card > .cta-btn {
    margin-left: 28px;
    margin-right: 28px;
}
.p-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--green));
    opacity: 0.12;
    transition: 0.5s;
}
.p-card:hover::before {
    transform: scale(2.5);
    opacity: 0.08;
}
.p-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(62, 39, 35, 0.18);
    border-color: var(--gold);
}
.p-icon {
    width: 60px;
    height: 60px;
    margin: -30px 0 14px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, #e89a1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(249, 168, 37, 0.35);
    position: relative;
    z-index: 2;
    transition: 0.4s;
    border: 4px solid #fff;
}
.p-card:hover .p-icon {
    transform: rotate(-8deg) scale(1.08);
    border-radius: 50%;
}
.p-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--brown);
    position: relative;
    z-index: 1;
}
.p-card p {
    color: #666;
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.6;
    min-height: 52px;
    position: relative;
    z-index: 1;
}
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    color: var(--green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.p-card br {
    display: none;
}
.p-card .cta-btn {
    font-size: 18px;
    padding: 8px 20px;
    background: var(--brown);
    color: var(--gold);
    border: 1.5px solid var(--brown);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.p-card .cta-btn::after {
    content: "→";
    transition: 0.3s;
}
.p-card .cta-btn:hover {
    background: var(--gold);
    color: var(--brown);
    border-color: var(--gold);
}
.p-card .cta-btn:hover::after {
    transform: translateX(4px);
}
@keyframes cardRise {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
@keyframes iconPulse {
    0%,
    100% {
        box-shadow: 0 10px 20px rgba(249, 168, 37, 0.35);
    }
    50% {
        box-shadow: 0 15px 30px rgba(249, 168, 37, 0.6);
    }
}
.p-card {
    opacity: 0;
}
.products.visible .p-card {
    animation: cardRise 0.7s ease both;
}
.products.visible .p-card:nth-child(1) {
    animation-delay: 0.1s;
}
.products.visible .p-card:nth-child(2) {
    animation-delay: 0.2s;
}
.products.visible .p-card:nth-child(3) {
    animation-delay: 0.3s;
}
.products.visible .p-card:nth-child(4) {
    animation-delay: 0.4s;
}
.products.visible .p-card:nth-child(5) {
    animation-delay: 0.5s;
}
.products.visible .p-card:nth-child(6) {
    animation-delay: 0.6s;
}
.p-icon {
    animation:
        iconFloat 4s ease-in-out infinite,
        iconPulse 3s ease-in-out infinite;
}
.p-card:hover .p-icon {
    animation-play-state: paused;
}
.p-card .badge {
    animation: badgeBlink 2.5s ease-in-out infinite;
}
@keyframes badgeBlink {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* WHY */
.why {
    background: #fff;
}
.why-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.why-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(93, 64, 55, 0.15);
    background: var(--light-beige);
}
.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 420px;
    max-height: 560px;
}
.why-visual-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #fff;
    color: var(--brown);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(93, 64, 55, 0.15);
}
.why-visual-tag i {
    color: var(--green);
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.why-row {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 20px;
    border-radius: 14px;
    background: #bbffb285;
    border-left: 4px solid var(--green);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.06);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}
.why-row:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.12);
}
.why-num {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
    transition: 0.4s;
}
.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e89a1c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 18px rgba(249, 168, 37, 0.3);
    transition: 0.4s;
}
.why-row:hover .why-icon {
    transform: rotate(-8deg) scale(1.1);
}
.why-body h3 {
    color: var(--brown);
    font-size: 19px;
    margin: 0 0 6px;
}
.why-body p {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}
@keyframes whySlide {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.why.visible .why-row {
    animation: whySlide 0.7s ease both;
}
.why.visible .why-row:nth-child(1) {
    animation-delay: 0.1s;
}
.why.visible .why-row:nth-child(2) {
    animation-delay: 0.25s;
}
.why.visible .why-row:nth-child(3) {
    animation-delay: 0.4s;
}
.why.visible .why-row:nth-child(4) {
    animation-delay: 0.55s;
}
.why.visible .why-visual {
    animation: slideInLeft 0.9s ease both;
}
.why-visual img {
    animation: aboutFloat 7s ease-in-out infinite;
}
.why-visual-tag {
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes whyIconSpin {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(0);
    }
}
@keyframes whyNumPop {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
.why.visible .why-row .why-icon {
    animation: whyIconSpin 4s ease-in-out infinite;
}
.why.visible .why-row:nth-child(2) .why-icon {
    animation-delay: 0.5s;
}
.why.visible .why-row:nth-child(3) .why-icon {
    animation-delay: 1s;
}
.why.visible .why-row:nth-child(4) .why-icon {
    animation-delay: 1.5s;
}
.why.visible .why-num {
    animation: whyNumPop 3s ease-in-out infinite;
}
.why.visible .why-row:nth-child(2) .why-num {
    animation-delay: 0.4s;
}
.why.visible .why-row:nth-child(3) .why-num {
    animation-delay: 0.8s;
}
.why.visible .why-row:nth-child(4) .why-num {
    animation-delay: 1.2s;
}
.why-row:hover .why-icon {
    animation-play-state: paused;
    transform: rotate(-8deg) scale(1.15);
}
.why-row:hover .why-num {
    animation-play-state: paused;
}
.why-row::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(218, 165, 32, 0.08),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
    pointer-events: none;
}
.why-row:hover::after {
    transform: translateX(100%);
}
.why-cta {
    align-self: flex-start;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.why-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* PROCESS */
.process {
    background: linear-gradient(135deg, var(--light-gold), var(--light-beige));
    position: relative;
    overflow: hidden;
}
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
    padding-top: 40px;
}
.steps::before{display:none}
.step {
    background: #fff;
    padding: 60px 18px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(93, 64, 55, 0.08);
}
.step:hover,
.step.active {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(93, 64, 55, 0.18);
}
.step-ico {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #2d7a3a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 25px rgba(56, 142, 60, 0.35);
    transition: 0.4s;
    border: 5px solid #fff;
    z-index: 2;
}
.step:hover .step-ico,
.step.active .step-ico {
    background: linear-gradient(135deg, var(--green), #2d7a3a);
    transform: translateX(-50%) rotate(360deg) scale(1.08);
}
.step-num {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 21px;
    color: var(--green);
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.step.active .step-num,
.step:hover .step-num {
    color: var(--green);
}
.step h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--brown);
}
.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}
@keyframes stepPop {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.process.visible .step {
    animation: stepPop 0.7s ease both;
}
.process.visible .step:nth-child(1) {
    animation-delay: 0.1s;
}
.process.visible .step:nth-child(2) {
    animation-delay: 0.25s;
}
.process.visible .step:nth-child(3) {
    animation-delay: 0.4s;
}
.process.visible .step:nth-child(4) {
    animation-delay: 0.55s;
}
.process.visible .step:nth-child(5) {
    animation-delay: 0.7s;
}
@keyframes stepIcoFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}
.process.visible .step-ico {
    animation: stepIcoFloat 4s ease-in-out infinite;
}
.step:hover .step-ico,
.step.active .step-ico {
    animation-play-state: paused;
}
.process.visible .step:nth-child(2) .step-ico {
    animation-delay: 0.5s;
}
.process.visible .step:nth-child(3) .step-ico {
    animation-delay: 1s;
}
.process.visible .step:nth-child(4) .step-ico {
    animation-delay: 1.5s;
}
.process.visible .step:nth-child(5) .step-ico {
    animation-delay: 2s;
}

/* GALLERY */
.gallery {
    background: #fff;
}
.g-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.g-item {
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.4s;
}
.g-item:nth-child(1) {
    background: linear-gradient(135deg, #f9a825, #f57f17);
}
.g-item:nth-child(2) {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}
.g-item:nth-child(3) {
    background: linear-gradient(135deg, #5d4037, #3e2723);
}
.g-item:nth-child(4) {
    background: linear-gradient(135deg, #f57c00, #e65100);
}
.g-item:nth-child(5) {
    background: linear-gradient(135deg, #558b2f, #33691e);
}
.g-item:nth-child(6) {
    background: linear-gradient(135deg, #8d6e63, #5d4037);
}
.g-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}
.g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}
.g-item span {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
}
.g-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.g-item:hover img {
    transform: scale(1.08);
}

/* TESTIMONIALS */
.testi {
    background: #fdef5585;
}
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.t-slider {
    position: relative;
    overflow: hidden;
}
.t-track {
    display: flex;
    width: 300%;
    animation: testiSlide 15s ease-in-out infinite;
}
.t-slider:hover .t-track { animation-play-state: paused; }
.t-track .t-card {
    flex: 0 0 calc((100% / 6) - 22px);
    margin: 10px 11px;
}
@keyframes testiSlide {
    0%, 28%   { transform: translateX(0); }
    33%, 61%  { transform: translateX(-33.3333%); }
    66%, 94%  { transform: translateX(-66.6666%); }
    100%      { transform: translateX(0); }
}
@media (max-width: 768px) {
    .t-track { width: 600%; }
    .t-track .t-card { flex: 0 0 calc((100% / 6) - 22px); }
    @keyframes testiSlide {
        0%, 14%   { transform: translateX(0); }
        16%, 30%  { transform: translateX(-16.6666%); }
        32%, 46%  { transform: translateX(-33.3333%); }
        48%, 62%  { transform: translateX(-50%); }
        64%, 78%  { transform: translateX(-66.6666%); }
        80%, 94%  { transform: translateX(-83.3333%); }
        100%      { transform: translateX(0); }
    }
}
.t-card {
    background: #fff;
    padding: 30px 26px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.08);
    transition: 0.3s;
    position: relative;
}
.t-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--gold);
    font-family: "Poppins", sans-serif;
    line-height: 1;
}
.t-card:hover {
    transform: translateY(-5px);
}
.stars {
    color: var(--gold);
    margin-bottom: 12px;
}
.t-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 18px;
    padding-top: 10px;
}
.t-who {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.t-who b {
    display: block;
    color: var(--brown);
    font-family: "Poppins", sans-serif;
}
.t-who small {
    color: #888;
    font-size: 0.85rem;
}

/* CONTACT */
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(40px, -30px) scale(1.2); opacity: 0.85; }
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}
@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(250%) skewX(-20deg); }
}
@keyframes spinSlow {
    to { transform: rotate(360deg); }
}
@keyframes tiltIn {
    from { opacity: 0; transform: perspective(800px) rotateY(-15deg) translateX(-40px); }
    to { opacity: 1; transform: perspective(800px) rotateY(0) translateX(0); }
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.6); }
    70% { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.contact {
    background: linear-gradient(135deg, #fff 0%, #fbf5ea 60%, #f5e9d3 100%);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}
.contact .container { position: relative; z-index: 2; }
.contact h2 { color: var(--brown); }
.contact .section-head .sub { color: var(--gold); }

/* ambient decorative orbs */
.contact::before,
.contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}
.contact::before {
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.25), transparent 70%);
    animation: floatOrb 10s ease-in-out infinite;
}
.contact::after {
    bottom: -100px; left: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(108, 66, 44, 0.12), transparent 70%);
    animation: floatOrb 13s ease-in-out infinite reverse;
}

/* Unified card: dark info panel + white form */
.c-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(108, 66, 44, 0.18);
    position: relative;
    animation: fadeUp 0.8s ease-out both;
    gap: 0;
}

/* LEFT: dark gradient panel */
.c-info {
    background: linear-gradient(160deg, #3d2418 0%, var(--brown) 55%, #8c5a3a 100%);
    color: #fff;
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
}
.c-info::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: conic-gradient(from 0deg, var(--gold), transparent 50%, var(--gold));
    border-radius: 50%;
    opacity: 0.25;
    animation: spinSlow 20s linear infinite;
}
.c-info::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.35), transparent 70%);
    border-radius: 50%;
    animation: drift 8s ease-in-out infinite;
}
.c-info > * { position: relative; z-index: 1; }
.c-info h3 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 1.3rem;
    animation: fadeUp 0.6s 0.1s ease-out both;
}
.c-info h3::before {
    content: "Let's Connect";
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}
.c-info h3::after { display: none; }

.c-item {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    animation: tiltIn 0.6s ease-out both;
}
.c-info .c-item:nth-of-type(1) { animation-delay: 0.15s; }
.c-info .c-item:nth-of-type(2) { animation-delay: 0.25s; }
.c-info .c-item:nth-of-type(3) { animation-delay: 0.35s; }
.c-info .c-item:nth-of-type(4) { animation-delay: 0.45s; }
.c-item:hover {
    transform: translateX(6px);
    background: rgba(249, 168, 37, 0.18);
    border-color: var(--gold);
}
.c-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) skewX(-20deg);
    pointer-events: none;
}
.c-item:hover::after { animation: shine 0.9s ease forwards; }

.c-ico {
    font-size: 1rem;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #d9891c);
    color: var(--brown);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 18px rgba(249, 168, 37, 0.4);
}
.c-ico::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: ripple 2.2s ease-out infinite;
}
.c-item:nth-of-type(2) .c-ico::before { animation-delay: 0.5s; }
.c-item:nth-of-type(3) .c-ico::before { animation-delay: 1s; }
.c-item:nth-of-type(4) .c-ico::before { animation-delay: 1.5s; }

.c-item b {
    display: block;
    color: var(--gold);
    margin-bottom: 2px;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}
.c-item span {
    color: #f5e9d3;
    font-size: 16px;
    font-weight: 500;
}
.c-note {
    background: rgba(249, 168, 37, 0.15);
    padding: 9px 12px;
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #f5e9d3;
    line-height: 1.6;
    animation: fadeUp 0.6s 0.55s ease-out both;
}

/* RIGHT: clean white form panel */
.c-form {
    background: #fff;
    padding: 26px 30px;
    color: var(--dark);
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}
.c-form:hover { transform: none; box-shadow: none; }
.c-form::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(249, 168, 37, 0.35);
    border-radius: 50%;
    animation: spinSlow 14s linear infinite;
    pointer-events: none;
}
.c-form h3 {
    margin-bottom: 14px;
    color: var(--brown);
    font-size: 19px;
    position: relative;
    padding-bottom: 8px;
    animation: fadeUp 0.6s 0.2s ease-out both;
}
.c-form h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}
.field {
    margin-bottom: 9px;
    position: relative;
    animation: fadeUp 0.5s ease-out both;
}
.c-form .field:nth-of-type(1) { animation-delay: 0.25s; }
.c-form .field:nth-of-type(2) { animation-delay: 0.3s; }
.c-form .field:nth-of-type(3) { animation-delay: 0.35s; }
.c-form .field:nth-of-type(4) { animation-delay: 0.4s; }
.c-form .field:nth-of-type(5) { animation-delay: 0.45s; }
.c-form .field:nth-of-type(6) { animation-delay: 0.5s; }
.field label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--brown);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 7px 12px;
    border: none;
    border-bottom: 2px solid #e8dccb;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
    border-bottom-color: var(--gold);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
    background: rgba(249, 168, 37, 0.05);
    box-shadow: 0 4px 0 -2px var(--gold);
    transform: none;
}
.field textarea {
    resize: vertical;
    min-height: 54px;
    border: 2px solid #e8dccb;
    border-radius: 10px;
    padding: 9px 12px;
}
.field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(249, 168, 37, 0.15);
}
.submit-btn {
    background: linear-gradient(135deg, var(--brown), #4a2e20);
    color: var(--gold);
    border: none;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    width: 100%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(61, 36, 24, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
    animation: fadeUp 0.6s 0.55s ease-out both;
    isolation: isolate;
}
.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), #e59316);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.submit-btn > * { position: relative; z-index: 1; }
.submit-btn:hover {
    color: var(--brown);
    transform: translateY(-3px);
    letter-spacing: 2.5px;
    box-shadow: 0 18px 38px rgba(249, 168, 37, 0.5);
}
.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover::after { left: 130%; }
.submit-btn:active { transform: translateY(-1px); }

@media (max-width: 768px) {
    .c-grid { grid-template-columns: 1fr; }
    .c-info { padding: 32px 24px; }
    .c-form { padding: 32px 24px; }
}

/* FOOTER */
footer {
    background:
        radial-gradient(ellipse at top left, rgba(249, 168, 37, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(249, 168, 37, 0.06), transparent 50%),
        #0f0704;
    color: #d8ccbc;
    padding: 70px 0 18px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(249, 168, 37, 0.04) 0 14px,
            transparent 14px 28px
        );
    pointer-events: none;
}
footer::after {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    animation: shine 3.5s linear infinite;
}
footer .container { position: relative; z-index: 1; }

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px dashed rgba(249, 168, 37, 0.2);
}
.f-col {
    animation: fadeUp 0.7s ease-out both;
}
.f-col:nth-child(1) { animation-delay: 0.05s; }
.f-col:nth-child(2) { animation-delay: 0.15s; }
.f-col:nth-child(3) { animation-delay: 0.25s; }
.f-col:nth-child(4) { animation-delay: 0.35s; }

.f-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 17px;
    position: relative;
    padding-left: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.f-col h4::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 2px;
    rotate: 45deg;
    box-shadow: 0 0 12px rgba(249, 168, 37, 0.6);
}

.f-col ul { list-style: none; }
.f-col li {
    margin-bottom: 9px;
    font-size: 16px;
    color: #bdb0a0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.f-col li:hover { transform: translateX(4px); color: #fff; }
.f-col a {
    color: #bdb0a0;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    position: relative;
    display: inline-block;
}
.f-col a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.f-col a:hover {
    color: var(--gold);
}
.f-col a:hover::after { width: 100%; }

.f-logo img {
    height: 56px;
    margin-bottom: 14px;
    background: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(249, 168, 37, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.f-logo img:hover {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 12px 30px rgba(249, 168, 37, 0.35);
}
.f-logo p {
    font-size: 15px;
    color: #a89c8b;
    margin-top: 8px;
    line-height: 1.6;
}
.f-italic {
    color: var(--gold);
    font-style: italic;
    font-family: "Poppins", sans-serif;
    margin-top: 6px !important;
    font-size: 0.9rem;
    position: relative;
    padding-left: 14px;
}
.f-italic::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 8px; height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.socials a {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid rgba(249, 168, 37, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.35s ease, transform 0.35s ease, border-color 0.35s ease, border-radius 0.4s ease;
}
.socials a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), #e59316);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}
.socials a:hover {
    color: var(--brown);
    transform: translateY(-5px);
    border-color: var(--gold);
    border-radius: 50%;
}
.socials a:hover::before { transform: translateY(0); }

.copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(249, 168, 37, 0.06);
    border: 1px solid rgba(249, 168, 37, 0.18);
    border-radius: 14px;
    color: #b9ac9c;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    flex-wrap: wrap;
}
.copy::before {
    content: "🌱 Growing together";
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.copy::after {
    content: "Made with 💛 in Karnataka";
    color: #b9ac9c;
    font-size: 0.8rem;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.open {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.35s ease;
    border-top: 5px solid var(--gold);
    box-shadow: 0 24px 60px rgba(61, 36, 24, 0.4);
}
.modal::before {
    content: "";
    position: absolute;
    top: -5px; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--brown), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    border-radius: 18px 18px 0 0;
}
.modal h3 {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    color: var(--brown);
    font-size: 1.5rem;
}
.modal-sub {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0 0 20px;
    font-style: italic;
}
.modal .field {
    margin-bottom: 12px;
}
.modal .field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modal .field input,
.modal .field select,
.modal .field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e8dccb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fbf7f0;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.modal .field input:focus,
.modal .field select:focus,
.modal .field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 168, 37, 0.18);
}
.modal .submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--brown), #4a2e20);
    color: var(--gold);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(61, 36, 24, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    isolation: isolate;
    position: relative;
    overflow: hidden;
}
.modal .submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), #e59316);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.modal .submit-btn:hover {
    color: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(249, 168, 37, 0.4);
}
.modal .submit-btn:hover::before { opacity: 1; }
.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--brown);
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}
.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* FLOATING CONTACT */
.float-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}
.fc-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    border: 3px solid #0b2a4a;
}
.fc-btn:hover {
    transform: scale(1.1);
}
.fc-wa {
    background: #25d366;
}
.fc-call {
    background: #f26522;
}
.fc-call svg {
    transform: rotate(10deg);
}

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu a::after {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-wrap { gap: 10px; }
    .nav-logo { order: 1; margin-right: auto; }
    .nav-enquire {
        display: inline-flex;
        order: 2;
        padding: 7px 14px;
        font-size: 0.78rem;
    }
    .hamburger { order: 3; margin-left: 4px; }
    .nav-menu { order: 4; }
    .nav-logo img {
        height: 54px;
    }
    .ts-info {
        justify-content: center;
        font-size: 0.75rem;
        gap: 8px;
    }
    .ts-divider {
        display: none;
    }
    .ts-socials {
        display: flex;
        gap: 6px;
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
    .ts-socials a { width: 28px; height: 28px; font-size: 0.75rem; }
    .c-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }
    .about::before {
        display: none;
    }
    .ams-years {
        width: 90px;
        height: 90px;
        bottom: 14px;
        right: 14px;
    }
    .ams-years b {
        font-size: 1.5rem;
    }
    .products-grid,
    .g-grid,
    .t-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-visual img {
        min-height: 300px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .f-grid {
        grid-template-columns: 1fr 1fr;
    }
    section {
        padding: 40px 0;
    }
    .trust-wrap {
        gap: 30px;
        font-size: 0.85rem;
        padding-right: 30px;
    }
    .trust::before,
    .trust::after {
        width: 40px;
    }
    .float-contact {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }
    .fc-btn {
        width: 52px;
        height: 52px;
    }
}
@media (max-width: 1024px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .c-grid { grid-template-columns: 1fr; }
    .why-split { grid-template-columns: 1fr; gap: 32px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .top-strip { padding: 8px 0; }
    .top-strip-wrap { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .ts-item small { display: none; }
    .ts-item b { font-size: 0.78rem; }
    .ts-ico { font-size: 0.9rem; }
    .hero { min-height: auto; }
    .slide img { height: auto; }
    .slide-nav { width: 36px; height: 36px; font-size: 1.2rem; }
    .about-layout { gap: 30px; }
    .about-media .ams-1 { aspect-ratio: 16 / 10; }
    .section-head h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
    .section-head .sub { font-size: 15px !important; }
    .p-card h3 { font-size: 1.1rem; }
    .p-img { height: 180px; }
    .why-visual img { min-height: 260px; max-height: 380px; }
    .process .step { padding: 60px 20px 20px; }
    .testi .t-card { padding: 20px; }
    .c-info, .c-form { padding: 22px 18px; }
    .c-info h3, .c-form h3 { font-size: 17px; }
    .field textarea { min-height: 80px; }
    .modal { padding: 28px 22px; border-radius: 14px; }
    .modal h3 { font-size: 1.2rem; }
    .copy { flex-direction: column; text-align: center; padding: 14px 16px; font-size: 0.8rem; }
    .copy::before, .copy::after { font-size: 0.72rem; }
    .socials { justify-content: flex-start; flex-wrap: wrap; }
    .float-contact { gap: 10px; }
    .fc-btn { width: 48px; height: 48px; font-size: 1rem; }
    footer { padding: 48px 0 16px; }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .g-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .t-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .f-grid { grid-template-columns: 1fr; gap: 28px; }
    .nav-logo img { height: 46px; }
    .section-head { margin-bottom: 24px; }
    .section-head h2 { font-size: 1.5rem; }
    .hero { min-height: auto; }
    .slide img { height: auto; }
    .cta-btn { padding: 10px 22px; font-size: 0.9rem; }
    .about-main h2 { font-size: 1.6rem; line-height: 1.25; }
    .why-row { padding: 16px; }
    .why-num { font-size: 2rem; }
    .trust-wrap { gap: 22px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .g-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .nav-wrap { padding: 10px 14px; }
    .nav-logo img { height: 42px; }
    .ts-info { gap: 6px; }
    .ts-item b { font-size: 0.72rem; }
    .hero { min-height: auto; }
    .slide img { height: auto; }
    .slide-nav { display: none; }
    .section-head h2 { font-size: 1.35rem; }
    .p-img { height: 160px; }
    .p-card { border-radius: 14px; }
    .p-card > h3, .p-card > p, .p-card > .cta-btn { margin-left: 18px; margin-right: 18px; }
    .c-info, .c-form { padding: 20px 16px; }
    .c-info h3, .c-form h3 { font-size: 16px; }
    .field label { font-size: 14px !important; }
    .submit-btn { font-size: 15px !important; padding: 11px 22px; }
    .c-item { padding: 8px 10px; gap: 10px; }
    .c-ico { min-width: 34px; height: 34px; font-size: 0.9rem; }
    .c-item b { font-size: 12px !important; }
    .c-item span { font-size: 14px !important; }
    .modal { padding: 22px 16px; }
    .modal-close { font-size: 1.5rem; top: 6px; right: 10px; }
    .ams-years { width: 74px; height: 74px; bottom: 8px; right: 8px; }
    .ams-years b { font-size: 1.2rem; }
    .ams-years span { font-size: 0.65rem; }
    .float-contact { bottom: 12px; right: 12px; }
    .fc-btn { width: 44px; height: 44px; }
    footer { padding: 36px 0 14px; }
    .f-col h4 { font-size: 15px !important; margin-bottom: 14px; }
    .f-col li { font-size: 14px !important; }
    .socials a { width: 38px; height: 38px; }
}

@media (max-width: 360px) {
    .section-head h2 { font-size: 1.2rem; }
    .about-main h2 { font-size: 1.35rem; }
    .p-img { height: 140px; }
    .cta-btn { padding: 9px 18px; }
}
