/* =========================================================
   BNB HUKUK — Stylesheet
   Renkler: Yeşil #0E6E31 + Bronz #B08D57
   ========================================================= */

:root {
    --green: #0E6E31;
    --green-dark: #0a5526;
    --green-light: #1a8a40;
    --green-soft: #e8f3ec;
    --bronze: #B08D57;
    --bronze-dark: #8c6e3f;
    --bronze-light: #d4b885;
    --bronze-soft: #f7f0e3;

    --ink: #1a1f1c;
    --ink-soft: #4a514c;
    --muted: #7a807c;
    --line: #e6e8e6;
    --bg: #ffffff;
    --bg-soft: #fafaf7;
    --bg-cream: #f6f3ec;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 2px 8px rgba(14, 110, 49, 0.06);
    --shadow: 0 10px 30px rgba(14, 110, 49, 0.08);
    --shadow-lg: 0 24px 60px rgba(14, 110, 49, 0.12);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --container: 1240px;
    --space: clamp(80px, 10vw, 130px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

img, svg, iframe { max-width: 100%; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section { overflow: hidden; }

/* ============== Typography helpers ============== */
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze-dark);
    padding-bottom: 14px;
    position: relative;
}
.eyebrow::after {
    content: "";
    position: absolute;
    left: 0; bottom: 6px;
    width: 32px; height: 2px;
    background: var(--bronze);
}

.text-accent { color: var(--green); font-style: italic; font-family: var(--font-serif); font-weight: 600; }

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin-top: 18px;
    letter-spacing: -0.01em;
}

.section__subtitle {
    margin-top: 18px;
    color: var(--ink-soft);
    max-width: 640px;
    font-size: 1.05rem;
}

.section__head {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 720px;
}
.section__head .eyebrow { display: inline-block; }
.section__head .section__subtitle { margin-left: auto; margin-right: auto; }

.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-top: 22px;
    line-height: 1.7;
}

/* ============== Buttons ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.btn--primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 22px rgba(14, 110, 49, 0.25);
}
.btn--primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(14, 110, 49, 0.35);
}

.btn--bronze {
    background: var(--bronze);
    color: #fff;
    box-shadow: 0 8px 22px rgba(176, 141, 87, 0.3);
}
.btn--bronze:hover {
    background: var(--bronze-dark);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn--ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn--full { width: 100%; }

/* ============== Topbar ============== */
.topbar {
    background: var(--green-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
}
.topbar__item:hover { color: var(--bronze-light); }
.topbar__item svg { color: var(--bronze-light); flex-shrink: 0; }

/* ============== Header ============== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.header.is-scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand__logo { height: 56px; width: auto; transition: transform .3s ease; }
.brand:hover .brand__logo { transform: scale(1.04); }

.nav__list {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    padding: 6px 0;
    transition: color .25s ease;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    width: 0; height: 2px;
    background: var(--bronze);
    transition: all .3s ease;
    transform: translateX(-50%);
}
.nav__link:hover, .nav__link.is-active {
    color: var(--green);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.header__cta { padding: 10px 22px; }

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    z-index: 110;
}
.nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    transition: all .3s ease;
}

/* ============== Hero ============== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 10vw, 130px) 0 clamp(80px, 10vw, 120px);
    isolation: isolate;
    background: linear-gradient(135deg, #0a3d1c 0%, #0E6E31 45%, #0c5026 100%);
    background-size: 200% 200%;
    animation: heroGradient 14s ease infinite;
}
@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}
.hero__orb--1 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, #B08D57 0%, rgba(176, 141, 87, 0) 70%);
    top: -120px;
    left: -100px;
    animation: orbFloat1 16s ease-in-out infinite;
}
.hero__orb--2 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, #1a8a40 0%, rgba(26, 138, 64, 0) 70%);
    bottom: -150px;
    right: -80px;
    animation: orbFloat2 20s ease-in-out infinite;
}
.hero__orb--3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #d4b885 0%, rgba(212, 184, 133, 0) 70%);
    top: 40%;
    left: 55%;
    opacity: 0.25;
    animation: orbFloat3 22s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -80px) scale(1.15); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-65%, -35%) scale(1.05); }
    66% { transform: translate(-35%, -60%) scale(0.95); }
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero__inner {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__content {
    text-align: center;
    max-width: 760px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-bottom: 26px;
}
.hero__chip-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bronze-light);
    box-shadow: 0 0 0 0 rgba(212, 184, 133, 0.7);
    animation: chipPulse 2s ease-in-out infinite;
}
@keyframes chipPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 184, 133, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(212, 184, 133, 0); }
}

.text-accent--light {
    color: var(--bronze-light);
    background: linear-gradient(135deg, #d4b885 0%, #B08D57 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero__title .text-accent--light {
    display: inline-block;
    font-style: italic;
}

.hero__subtitle {
    margin-top: 22px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
}

.hero__actions {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn--outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn--outline:hover {
    border-color: var(--bronze-light);
    color: var(--bronze-light);
    background: rgba(176, 141, 87, 0.12);
}

.hero__scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    transform: translateX(-50%);
    width: 24px; height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
    z-index: 2;
}
.hero__scroll span {
    width: 3px;
    height: 8px;
    background: var(--bronze-light);
    border-radius: 2px;
    animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

/* ============== Section base ============== */
.section { padding: var(--space) 0; }

/* ============== About ============== */
.about { background: var(--bg); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about__media {
    position: relative;
    max-width: 460px;
    width: 100%;
    margin-right: 30px;
}
.about__frame {
    position: relative;
    background: linear-gradient(135deg, var(--green-soft) 0%, var(--bronze-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about__frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1.5px solid rgba(176, 141, 87, 0.3);
    border-radius: calc(var(--radius-lg) - 8px);
}
.about__img {
    position: relative;
    width: 75%;
    z-index: 2;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.1));
}
.about__badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 28px;
    text-align: center;
    border: 1px solid var(--line);
}
.about__badge-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.about__badge-text {
    display: block;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
}

.about__values {
    margin-top: 40px;
    display: grid;
    gap: 22px;
}
.about__values li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.about__values-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.about__values strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 4px;
}
.about__values p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============== Services ============== */
.services { background: var(--bg-soft); }

.services__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 8px;
    background: #fff;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.services__tab {
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: all .3s ease;
}
.services__tab:hover { color: var(--green); }
.services__tab.is-active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 16px rgba(14, 110, 49, 0.25);
}

.services__panel {
    display: none;
    animation: fadeUp .5s ease both;
}
.services__panel.is-active { display: block; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.service-card {
    background: #fff;
    padding: 32px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--bronze);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 14px;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all .3s ease;
}
.service-card:hover .service-card__icon {
    background: var(--green);
    color: #fff;
    transform: rotate(-6deg);
}
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}
.service-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============== Team ============== */
.team { background: var(--bg); }

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 34px;
    text-align: center;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
}
.team-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--bronze));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.team-card:hover::after { transform: scaleX(1); }

.team-card--featured {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    border: none;
    transform: translateY(-12px);
}
.team-card--featured::after {
    background: linear-gradient(90deg, var(--bronze-light), var(--bronze));
    transform: scaleX(1);
}
.team-card--featured:hover { transform: translateY(-18px); }

.team-card__avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-soft), var(--bronze-soft));
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
}
.team-card__avatar span {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: -0.02em;
}
.team-card--featured .team-card__avatar {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}
.team-card--featured .team-card__avatar span { color: #fff; }

.team-card__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.team-card__role {
    display: inline-block;
    font-size: 13px;
    color: var(--bronze-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
}
.team-card--featured .team-card__role { color: var(--bronze-light); }

.team-card__contact {
    display: grid;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.team-card--featured .team-card__contact {
    border-top-color: rgba(255,255,255,0.15);
}
.team-card__contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    transition: color .25s ease;
}
.team-card__contact a:hover { color: var(--green); }
.team-card__contact svg { color: var(--bronze); flex-shrink: 0; }
.team-card--featured .team-card__contact a { color: rgba(255,255,255,0.9); }
.team-card--featured .team-card__contact a:hover { color: var(--bronze-light); }
.team-card--featured .team-card__contact svg { color: var(--bronze-light); }

/* ============== FAQ ============== */
.faq { background: var(--bg-soft); }

.faq__list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s ease;
}
.faq__item:hover {
    border-color: var(--bronze);
    box-shadow: var(--shadow-sm);
}
.faq__item[open] {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    transition: color .25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green); }

.faq__icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border: 1.5px solid var(--bronze);
    border-radius: 50%;
    position: relative;
    transition: all .3s ease;
}
.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background: var(--bronze);
    border-radius: 2px;
    transition: all .3s ease;
}
.faq__icon::before {
    width: 12px; height: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq__icon::after {
    width: 2px; height: 12px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon {
    background: var(--green);
    border-color: var(--green);
}
.faq__item[open] .faq__icon::before { background: #fff; }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__answer {
    padding: 0 26px 24px;
    color: var(--ink-soft);
    line-height: 1.75;
    animation: faqSlide .35s ease;
}
.faq__answer p { font-size: 0.98rem; }
.faq__answer a { color: var(--green); font-weight: 500; }
.faq__answer a:hover { text-decoration: underline; }

@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============== CTA Banner ============== */
.cta-banner {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 50%, rgba(176, 141, 87, 0.2), transparent 50%);
}
.cta-banner__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 60px 24px;
    flex-wrap: wrap;
}
.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    max-width: 720px;
}
.cta-banner__text {
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

/* ============== Contact ============== */
.contact { background: var(--bg-soft); }

.contact__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bronze);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .4s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.contact-card:hover::before { transform: scaleX(1); }

.contact-card__icon {
    width: 56px; height: 56px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all .3s ease;
}
.contact-card:hover .contact-card__icon {
    background: var(--green);
    color: #fff;
    transform: scale(1.05);
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}
.contact-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}
.contact-card a {
    color: var(--ink-soft);
    transition: color .25s ease;
}
.contact-card a:hover { color: var(--green); }

/* Map */
.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.map iframe { display: block; filter: grayscale(0.15); }

/* ============== Footer ============== */
.footer {
    background: #0c2a18;
    color: rgba(255,255,255,0.78);
    padding: 80px 0 0;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--bronze), var(--green));
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer__brand p { margin-top: 18px; line-height: 1.7; font-size: 0.92rem; opacity: 0.8; }
.footer__logo {
    height: 60px;
    width: auto;
    background: rgba(255,255,255,0.06);
    padding: 8px 14px;
    border-radius: 10px;
}

.footer__col h4 {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer__col h4::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 2px;
    background: var(--bronze);
}
.footer__col address { font-style: normal; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col li, .footer__col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    transition: color .25s ease;
}
.footer__col a:hover { color: var(--bronze-light); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}
.footer__disclaimer { opacity: 0.6; font-style: italic; }

.footer__powered {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .3s ease;
}
.footer__powered span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.footer__powered-logo {
    height: 18px;
    width: auto;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity .3s ease;
}
.footer__powered:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(176, 141, 87, 0.4);
}
.footer__powered:hover .footer__powered-logo {
    opacity: 1;
}
.footer__powered:hover span {
    color: var(--bronze-light);
}

/* ============== WhatsApp floating ============== */
.whatsapp {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all .3s ease;
    animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp:hover { transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============== Reveal animations ============== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== Responsive ============== */
@media (max-width: 980px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__media { margin: 0 auto; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .team-card--featured { transform: none; }
    .team-card--featured:hover { transform: translateY(-8px); }
    .hero { min-height: 80vh; }
}

@media (max-width: 760px) {
    .topbar__left { display: none; }
    .nav {
        position: fixed;
        top: 0; right: 0;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 100px 30px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 105;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: 22px; align-items: flex-start; }
    .nav__link { font-size: 16px; }
    .nav__toggle { display: flex; }
    .nav__toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav__toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    .header__cta { display: none; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { justify-content: center; text-align: center; }
    .hero { min-height: 60vh; }
    .hero__chip { font-size: 11px; padding: 7px 14px; }
    .hero__orb { filter: blur(60px); }
    .services__tabs { width: 100%; flex-direction: column; border-radius: var(--radius); }
    .services__tab { width: 100%; }
    .whatsapp { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 460px) {
    .brand__logo { height: 44px; }
    .hero__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn { width: 100%; }
    .hero__chip { font-size: 10.5px; padding: 6px 12px; max-width: 100%; }
    .about__media { margin-right: 0; }
    .about__badge { right: 10px; bottom: -16px; padding: 14px 18px; }
    .about__badge-num { font-size: 1.4rem; }
    .services__grid { grid-template-columns: 1fr; }
    .service-card { padding: 26px 22px; }
    .contact__cards { grid-template-columns: 1fr; }
    .faq__item summary { padding: 18px 20px; font-size: 1rem; gap: 12px; }
    .faq__answer { padding: 0 20px 20px; }
    .container { padding: 0 18px; }
    .cta-banner__inner { padding: 44px 18px; }
    .footer__bottom { padding: 24px 18px; flex-direction: column; gap: 14px; }
    .hero__title { font-size: 2.2rem; }
}
