:root {
    --green:#12351f;
    --green2:#1f5b34;
    --gold:#c89b3c;
    --cream:#f6f1e8;
    --dark:#111827;
    --muted:#6b7280;
    --white:#fff;
    --shadow:0 24px 70px rgba(0,0,0,.14);
}

* {
    box-sizing:border-box;
}

html,
body {
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

body {
    margin:0;
    font-family:Arial, sans-serif;
    color:var(--dark);
    background:var(--cream);
}

/* HEADER */

.header {
    position:sticky;
    top:0;
    z-index:999;
    min-height:112px;
    padding:12px 6%;
    background:rgba(18,53,31,.96);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 12px 38px rgba(0,0,0,.18);
}

.brand {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:260px;
    height:88px;
    color:white;
    text-decoration:none;
}

.brand span {
    display:none;
}

.brand img {
    width:190px;
    height:90px;
    object-fit:contain;
    object-position:left center;
    transform:scale(1.35);
    transform-origin:left center;
}

.nav-menu {
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-menu a {
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:900;
    padding:14px 18px;
    border-radius:16px;
    transition:.2s;
}

.nav-menu a:hover {
    background:rgba(255,255,255,.12);
    color:#d8b15a;
}

.menu-btn {
    display:none;
    background:var(--gold);
    color:#172312;
    border:0;
    width:48px;
    height:48px;
    border-radius:14px;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
}

/* SLIDER */

.home-slider {
    position:relative;
    min-height:760px;
    overflow:hidden;
    background:#12351f;
}

.slide {
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    min-height:760px;
    padding:0;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
    background-color:#12351f;
    transition:opacity .8s ease, visibility .8s ease;
}

.slide.active {
    opacity:1;
    visibility:visible;
    position:relative;
}

.slide::before,
.slide::after {
    display:none !important;
    content:none !important;
}

.homepage-intro {
    max-width:1180px;
    margin:42px auto 18px;
    padding:0 22px;
    text-align:center;
}

.homepage-intro h1 {
    margin:0 auto 12px;
    color:var(--green);
    font-size:clamp(34px,4.4vw,58px);
    line-height:1.08;
}

.homepage-intro p {
    max-width:780px;
    margin:0 auto;
    color:var(--muted);
    font-size:19px;
    line-height:1.6;
    font-weight:700;
}

/* BUTTONS */

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 26px;
    border-radius:999px;
    font-weight:900;
    text-decoration:none;
}

.btn-primary {
    background:var(--gold);
    color:#172312;
}

.btn-light {
    background:white;
    color:var(--green);
}

.btn-outline {
    color:white;
    border:2px solid rgba(255,255,255,.7);
}

/* WHATSAPP */

.whatsapp-fixed {
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:998;
    background:#25d366;
    color:white;
    text-decoration:none;
    font-weight:900;
    padding:16px 22px;
    border-radius:999px;
    box-shadow:0 18px 45px rgba(0,0,0,.25);
}

/* STATS */

.stats {
    max-width:1180px;
    margin:40px auto 70px;
    padding:0 22px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    position:relative;
    z-index:20;
}

.stat-card {
    background:white;
    border-radius:26px;
    padding:30px;
    box-shadow:var(--shadow);
}

.stat-card strong {
    display:block;
    color:var(--green);
    font-size:38px;
    margin-bottom:6px;
}

.stat-card span {
    color:var(--muted);
    font-weight:700;
}

/* SECTIONS */

.section {
    max-width:1180px;
    margin:0 auto;
    padding:70px 22px;
}

.section-title {
    text-align:center;
    margin-bottom:42px;
}

.section-title small,
.about-block small {
    color:var(--gold);
    font-weight:900;
    letter-spacing:2px;
}

.section-title h2,
.about-block h2 {
    color:var(--green);
    font-size:clamp(32px,4vw,52px);
    line-height:1.12;
    margin:8px 0 14px;
}

.section-title p {
    max-width:720px;
    margin:0 auto;
    color:var(--muted);
    font-size:18px;
}

/* CONTACT */

.contact-hero {
    background:
        linear-gradient(135deg, rgba(18,53,31,.94), rgba(31,91,52,.86)),
        url('/uploads/sliders/cd89ecdbff99cb3d795d3e9877064c4f.png') center/cover;
    color:white;
    padding:96px 22px 78px;
    text-align:center;
}

.contact-hero > div {
    max-width:980px;
    margin:0 auto;
}

.contact-hero small {
    color:var(--gold);
    font-weight:900;
    letter-spacing:2px;
}

.contact-hero h1 {
    margin:12px auto 18px;
    max-width:900px;
    font-size:clamp(38px,5vw,68px);
    line-height:1.06;
}

.contact-hero p {
    max-width:820px;
    margin:0 auto;
    color:rgba(255,255,255,.86);
    font-size:20px;
    line-height:1.65;
    font-weight:700;
}

.contact-page {
    max-width:1180px;
    margin:0 auto;
    padding:46px 22px 86px;
}

.contact-actions {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:-84px;
    position:relative;
    z-index:4;
}

.contact-action {
    display:block;
    min-height:168px;
    padding:28px;
    border-radius:26px;
    color:white;
    text-decoration:none;
    box-shadow:var(--shadow);
    transition:.2s ease;
}

.contact-action:hover {
    transform:translateY(-4px);
}

.contact-action span,
.contact-card small {
    display:block;
    margin-bottom:12px;
    font-weight:900;
    letter-spacing:1.5px;
    text-transform:uppercase;
    opacity:.82;
}

.contact-action strong {
    display:block;
    font-size:28px;
    line-height:1.15;
}

.contact-action em {
    display:block;
    margin-top:18px;
    font-style:normal;
    font-weight:900;
}

.contact-action.call {
    background:linear-gradient(135deg, var(--green), var(--green2));
}

.contact-action.whatsapp {
    background:linear-gradient(135deg, #128c4a, #25d366);
}

.contact-action.location {
    background:linear-gradient(135deg, #7a5520, var(--gold));
}

.contact-grid {
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    margin-top:28px;
}

.contact-card {
    background:white;
    border-radius:30px;
    padding:34px;
    box-shadow:var(--shadow);
}

.contact-card small {
    color:var(--gold);
}

.contact-card h2 {
    margin:0 0 14px;
    color:var(--green);
    font-size:34px;
}

.contact-card p {
    color:var(--muted);
    font-size:18px;
    line-height:1.7;
    margin:0;
}

.contact-detail-list {
    display:grid;
    gap:16px;
    margin-top:26px;
}

.contact-detail-list div {
    padding:18px;
    border-radius:20px;
    background:#f8faf9;
}

.contact-detail-list span {
    display:block;
    color:var(--muted);
    font-weight:900;
    margin-bottom:8px;
}

.contact-detail-list strong {
    color:var(--green);
    line-height:1.5;
}

.contact-buttons {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:26px;
}

.contact-whatsapp-btn {
    color:var(--green);
}

.contact-map {
    margin-top:24px;
    border-radius:30px;
    overflow:hidden;
    min-height:430px;
    background:white;
    box-shadow:var(--shadow);
}

.contact-map iframe {
    width:100%;
    height:430px;
    border:0;
    display:block;
}

/* CARDS */

.cards {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card {
    background:white;
    border-radius:30px;
    padding:34px;
    box-shadow:0 18px 50px rgba(0,0,0,.08);
    border:1px solid rgba(18,53,31,.08);
}

.card-icon {
    width:66px;
    height:66px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--green),var(--gold));
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.card h3 {
    font-size:26px;
    color:var(--green);
    margin:0 0 12px;
}

.card p {
    color:var(--muted);
    margin:0 0 20px;
}

.card a {
    color:var(--green);
    font-weight:900;
    text-decoration:none;
}

/* ABOUT */

.about-block {
    max-width:1180px;
    margin:40px auto;
    padding:22px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
}

.about-block > div:first-child {
    background:white;
    border-radius:32px;
    padding:44px;
    box-shadow:var(--shadow);
}

.about-block p {
    color:#374151;
    font-size:18px;
    line-height:1.8;
}

.about-image {
    min-height:420px;
    border-radius:32px;
    background:
        linear-gradient(rgba(18,53,31,.05), rgba(18,53,31,.05)),
        url("https://images.unsplash.com/photo-1516467508483-a7212febe31a?auto=format&fit=crop&w=1000&q=85");
    background-size:cover;
    background-position:center;
    box-shadow:var(--shadow);
}

/* PROCESS */

.process {
    max-width:1180px;
    margin:0 auto;
    padding:70px 22px;
}

.process-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.process-grid div {
    background:#12351f;
    color:white;
    padding:34px;
    border-radius:28px;
}

.process-grid b {
    display:inline-block;
    color:var(--gold);
    font-size:32px;
    margin-bottom:14px;
}

.process-grid h3 {
    font-size:25px;
    margin:0 0 10px;
}

.process-grid p {
    color:rgba(255,255,255,.78);
}

/* CONTENT */

.content {
    max-width:1000px;
    margin:0 auto;
    padding:44px;
    background:white;
    border-radius:32px;
    box-shadow:var(--shadow);
    font-size:19px;
    color:#374151;
    line-height:1.8;
}

/* GALLERY */

.gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-item {
    position:relative;
    display:block;
    height:280px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.12);
    background:white;
}

.gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.gallery-item:hover img {
    transform:scale(1.07);
}

.gallery-item span {
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    padding:12px 16px;
    border-radius:16px;
    background:rgba(18,53,31,.86);
    color:white;
    font-weight:900;
}

/* CTA */

.cta {
    padding:80px 7%;
    text-align:center;
    color:white;
    background:linear-gradient(135deg,var(--green),var(--green2));
}

.cta h2 {
    font-size:clamp(32px,4vw,54px);
    margin:0 0 14px;
}

.cta p {
    color:rgba(255,255,255,.82);
    font-size:19px;
    margin-bottom:28px;
}

/* FOOTER */

footer {
    background:#0b1f13;
    color:white;
    padding:34px 7%;
}

.footer-bottom {
    display:block;
    width:min(1180px, 100%);
    margin:0 auto;
    font-size:13px;
    text-align:center;
}

.footer-bottom p {
    margin:0;
}

.powered-by {
    --lime:#c9ff32;
    --cyan:#62e7d5;
    position:relative;
    isolation:isolate;
    overflow:hidden;
    width:max-content;
    margin:28px auto 0;
    display:flex;
    align-items:center;
    gap:9px;
    padding:9px 13px 9px 10px;
    color:white;
    border:1px solid rgba(201,255,50,.16);
    border-radius:14px;
    background:rgba(12,16,13,.533);
    text-decoration:none;
    animation:creditGlow 2.2s ease-in-out infinite;
}

.powered-by::before {
    position:absolute;
    z-index:-1;
    top:-120%;
    bottom:-120%;
    left:-55%;
    width:32%;
    content:"";
    transform:rotate(18deg);
    background:linear-gradient(90deg,transparent,rgba(201,255,50,.082),rgba(98,231,213,.2),rgba(201,255,50,.082),transparent);
    animation:creditScan 3s ease-in-out infinite;
}

.powered-by small {
    color:#666b67;
    font-size:6px;
    font-weight:700;
    letter-spacing:.2em;
}

.fk-mark {
    position:relative;
    isolation:isolate;
    width:31px;
    height:31px;
    display:grid;
    place-items:center;
    overflow:hidden;
    color:var(--lime);
    border:1px solid rgba(201,255,50,.5);
    border-radius:9px;
    background:#0c100d;
    font:900 9px/1 monospace;
    animation:logoDance 2.6s ease-in-out infinite,logoGlow 1.5s ease-in-out infinite;
}

.fk-mark::before {
    position:absolute;
    z-index:-2;
    inset:-65%;
    content:"";
    background:conic-gradient(transparent 0 38%,var(--lime) 44%,var(--cyan) 52%,transparent 59%);
    animation:orbit 4.8s linear infinite;
}

.fk-mark::after {
    position:absolute;
    z-index:-1;
    inset:2px;
    content:"";
    border-radius:6px;
    background:#0c100d;
}

.fk-mark i {
    position:absolute;
    top:4px;
    right:4px;
    width:3px;
    height:3px;
    border-radius:50%;
    background:var(--lime);
    box-shadow:0 0 8px var(--lime);
    animation:pulse 1.6s ease infinite;
}

.powered-by b {
    font-size:13px;
    letter-spacing:-.7px;
    background:linear-gradient(105deg,#fff 35%,#999 45%,#fff 55%);
    background-size:240%;
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    animation:wordScan 5.8s ease infinite;
}

.powered-by b em {
    font-style:normal;
    background:linear-gradient(90deg,var(--lime),var(--cyan),var(--lime));
    background-size:200%;
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    animation:wordCode 3.4s linear infinite;
}

@keyframes orbit {
    to { transform:rotate(360deg); }
}

@keyframes pulse {
    50% { opacity:.25; transform:scale(.5); }
}

@keyframes logoDance {
    0%,100% { transform:rotate(-4deg); }
    50% { transform:rotate(5deg) scale(1.08); }
}

@keyframes logoGlow {
    50% { box-shadow:0 0 18px rgba(201,255,50,.467),0 0 30px rgba(98,231,213,.18); }
}

@keyframes creditGlow {
    50% { border-color:rgba(98,231,213,.42); box-shadow:0 0 27px rgba(201,255,50,.106); }
}

@keyframes creditScan {
    0%,18% { left:-55%; opacity:0; }
    30%,72% { opacity:1; }
    86%,100% { left:125%; opacity:0; }
}

@keyframes wordScan {
    0%,65%,100% { background-position:100% center; }
    82% { background-position:0 center; }
}

@keyframes wordCode {
    to { background-position:-200% center; }
}

@media (max-width:640px) {
    .footer-bottom {
        align-items:center;
        flex-direction:column;
        text-align:center;
    }
}

/* TABLET */

@media(max-width:1100px) {
    .brand {
        min-width:220px;
    }

    .brand img {
        width:165px;
        height:82px;
        transform:scale(1.28);
    }

    .nav-menu {
        gap:6px;
    }

    .nav-menu a {
        font-size:15px;
        padding:11px 12px;
    }
}

/* MOBILE FINAL APP UI */

@media(max-width:900px) {

    html,
    body {
        width:100%;
        max-width:100%;
        overflow-x:hidden !important;
        background:#f3eee5 !important;
    }

    body::before {
        content:"";
        position:fixed;
        inset:0;
        z-index:-1;
        background:
            radial-gradient(circle at top, rgba(200,155,60,.18), transparent 28%),
            linear-gradient(180deg,#f9f5ed 0%,#eee6da 100%);
    }

    .header {
        position:sticky !important;
        top:0 !important;
        z-index:999 !important;
        height:124px !important;
        min-height:124px !important;
        padding:0 22px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        background:
            linear-gradient(135deg,#083419 0%,#0e5a2d 55%,#073018 100%) !important;
        border-bottom:1px solid rgba(255,255,255,.08) !important;
        box-shadow:
            0 18px 38px rgba(0,0,0,.22),
            inset 0 -1px 0 rgba(255,255,255,.08) !important;
        overflow:visible !important;
    }

    .header::before {
        content:"";
        position:absolute;
        inset:0;
        background:
            radial-gradient(circle at 50% 0%, rgba(255,255,255,.15), transparent 35%),
            radial-gradient(circle at 10% 90%, rgba(200,155,60,.20), transparent 34%);
        pointer-events:none;
    }

    .brand {
        position:absolute !important;
        left:50% !important;
        top:50% !important;
        transform:translate(-50%,-50%) !important;
        width:182px !important;
        min-width:182px !important;
        height:104px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        padding:0 !important;
        margin:0 !important;
        background:transparent !important;
        border:0 !important;
        box-shadow:none !important;
        z-index:2;
    }

    .brand img {
        width:168px !important;
        height:104px !important;
        max-width:none !important;
        object-fit:contain !important;
        transform:none !important;
        filter:drop-shadow(0 12px 22px rgba(0,0,0,.35)) !important;
    }

    .menu-btn {
        position:absolute !important;
        right:22px !important;
        top:50% !important;
        transform:translateY(-50%) !important;
        width:54px !important;
        height:54px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        border-radius:19px !important;
        border:1px solid rgba(255,255,255,.30) !important;
        background:linear-gradient(145deg,#e4bb53 0%,#c8922f 100%) !important;
        color:#0b3019 !important;
        font-size:0 !important;
        box-shadow:
            0 14px 26px rgba(0,0,0,.28),
            inset 0 1px 0 rgba(255,255,255,.42) !important;
        z-index:3;
    }

    .menu-btn::before {
        content:"";
        width:23px;
        height:16px;
        display:block;
        background:
            linear-gradient(#0b3019,#0b3019) top/23px 3px no-repeat,
            linear-gradient(#0b3019,#0b3019) center/23px 3px no-repeat,
            linear-gradient(#0b3019,#0b3019) bottom/23px 3px no-repeat;
        border-radius:4px;
    }

    .menu-btn:active {
        transform:translateY(-50%) scale(.94) !important;
    }

    .nav-menu {
        display:none !important;
        position:absolute !important;
        left:18px !important;
        right:18px !important;
        top:132px !important;
        width:auto !important;
        margin:0 !important;
        padding:14px !important;
        background:rgba(7,38,20,.96) !important;
        backdrop-filter:blur(20px) !important;
        border:1px solid rgba(255,255,255,.10) !important;
        border-radius:24px !important;
        box-shadow:0 28px 70px rgba(0,0,0,.35) !important;
        flex-direction:column !important;
        gap:8px !important;
        z-index:9999 !important;
    }

    .nav-menu.active {
        display:flex !important;
    }

    .nav-menu a {
        width:100% !important;
        padding:16px 18px !important;
        border-radius:16px !important;
        background:rgba(255,255,255,.07) !important;
        color:white !important;
        font-size:16px !important;
        font-weight:900 !important;
        text-decoration:none !important;
    }

    .home-slider {
        width:100% !important;
        height:auto !important;
        min-height:0 !important;
        padding:14px 14px 0 !important;
        margin:0 !important;
        background:#f3eee5 !important;
        overflow:hidden !important;
    }

    .slide {
        width:100% !important;
        height:218px !important;
        min-height:218px !important;
        max-height:218px !important;
        padding:0 !important;
        margin:0 !important;
        background-size:contain !important;
        background-position:center center !important;
        background-repeat:no-repeat !important;
        background-color:#0d341d !important;
        border-radius:28px !important;
        overflow:hidden !important;
        box-shadow:
            0 20px 42px rgba(17,24,39,.18),
            inset 0 0 0 1px rgba(255,255,255,.08) !important;
    }

    .slide.active {
        position:relative !important;
        display:block !important;
    }

    .stats {
        width:100% !important;
        max-width:100% !important;
        margin:18px 0 0 !important;
        padding:0 16px !important;
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:14px !important;
        background:transparent !important;
    }

    .stat-card {
        position:relative !important;
        border-radius:28px !important;
        padding:26px 28px !important;
        background:
            linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.91)) !important;
        border:1px solid rgba(255,255,255,.65) !important;
        box-shadow:
            0 20px 42px rgba(17,24,39,.10),
            inset 0 1px 0 rgba(255,255,255,.80) !important;
    }

    .stat-card strong {
        font-size:34px !important;
        line-height:1 !important;
        color:#10351f !important;
        letter-spacing:-.8px !important;
    }

    .stat-card span {
        display:block !important;
        margin-top:8px !important;
        color:#687084 !important;
        font-size:16px !important;
        font-weight:800 !important;
    }

    .whatsapp-fixed {
        right:18px !important;
        bottom:88px !important;
        z-index:998 !important;
        padding:17px 24px !important;
        border-radius:20px !important;
        background:linear-gradient(135deg,#2ee66d 0%,#16c955 100%) !important;
        color:white !important;
        font-size:17px !important;
        font-weight:950 !important;
        box-shadow:
            0 18px 38px rgba(0,0,0,.24),
            inset 0 1px 0 rgba(255,255,255,.25) !important;
    }

    .section,
    .process {
        padding:55px 16px !important;
    }

    .cards,
    .about-block,
    .process-grid,
    .gallery-grid {
        grid-template-columns:1fr !important;
    }

    .cards {
        gap:16px !important;
    }

    .card {
        border-radius:28px !important;
        box-shadow:0 18px 38px rgba(17,24,39,.09) !important;
    }

    .about-block {
        margin:20px auto !important;
        padding:16px !important;
    }

    .about-block > div:first-child {
        padding:28px !important;
    }

    .about-image {
        min-height:280px !important;
    }

    .content {
        padding:28px !important;
        font-size:17px !important;
    }

    .gallery-item {
        height:240px !important;
    }

    .cta {
        padding:60px 22px !important;
    }
}


/* MOBİL LOGO TAM ORTALAMA */

@media(max-width:900px){

    .header{
        position:relative !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
    }

    .brand{
        position:absolute !important;
        left:50% !important;
        top:50% !important;
        transform:translate(-50%, -50%) !important;
        margin:0 !important;
        padding:0 !important;
        width:180px !important;
        min-width:180px !important;
        height:104px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
    }

    .brand img{
        width:168px !important;
        height:104px !important;
        object-fit:contain !important;
        object-position:center center !important;
        margin:0 auto !important;
        display:block !important;
    }

    .menu-btn{
        position:absolute !important;
        right:22px !important;
        top:50% !important;
        transform:translateY(-50%) !important;
    }
}


.blog-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.blog-card {
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.09);
}

.blog-card img {
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.blog-card div {
    padding:26px;
}

.blog-card h3 {
    margin:0 0 12px;
    color:#12351f;
    font-size:24px;
}

.blog-card p {
    color:#6b7280;
    line-height:1.6;
}

.blog-card a {
    color:#12351f;
    font-weight:900;
    text-decoration:none;
}

@media(max-width:900px) {
    .blog-grid {
        grid-template-columns:1fr;
    }

    .blog-card img {
        height:210px;
    }
}


/* BLOG */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.blog-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.blog-card-body{
    padding:26px;
}

.blog-card h3{
    margin:0 0 14px;
    color:#12351f;
    font-size:26px;
}

.blog-card p{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:18px;
}

.blog-card a{
    color:#12351f;
    text-decoration:none;
    font-weight:900;
}

@media(max-width:900px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-card img{
        height:220px;
    }
}


/* ABOUT IMAGE FIX */

.about-image{
    background:none !important;
    background-image:none !important;
    min-height:520px;
    border-radius:36px;
    overflow:hidden;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:36px;
}


/* =========================
   MOBİL APP BAR
========================= */

.mobile-bottom-bar{
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    height:74px;
    background:rgba(10,35,22,.92);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    display:none;
    align-items:center;
    justify-content:space-around;
    z-index:9999;
    box-shadow:0 20px 45px rgba(0,0,0,.28);
}

.mobile-bottom-bar a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#d1d5db;
    font-size:11px;
    font-weight:800;
    gap:4px;
    min-width:58px;
    transition:.2s;
}

.mobile-bottom-bar a span{
    font-size:22px;
    line-height:1;
}

.mobile-bottom-bar a.active,
.mobile-bottom-bar a:hover{
    color:#fff;
}

.mobile-bottom-bar .call-btn{
    width:62px;
    height:62px;
    border-radius:50%;
    background:linear-gradient(135deg,#c89b3c,#f1cf76);
    color:#102017;
    margin-top:-34px;
    box-shadow:0 12px 30px rgba(200,155,60,.45);
    font-size:13px;
    font-weight:900;
}

.mobile-bottom-space{
    display:none;
    height:95px;
}

@media(max-width:900px){

    .mobile-bottom-bar{
        display:flex;
    }

    .mobile-bottom-space{
        display:block;
    }

    .whatsapp-fixed{
        bottom:100px !important;
        right:16px !important;
    }
}


/* PREMIUM MOBİL HEADER */

@media(max-width:900px){

    .header{
        height:116px !important;
        min-height:116px !important;
        padding:0 20px !important;
        position:sticky !important;
        top:0 !important;
        z-index:9998 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        background:
            linear-gradient(135deg,rgba(8,52,25,.96),rgba(18,88,45,.94)) !important;
        backdrop-filter:blur(18px);
        border-bottom:1px solid rgba(255,255,255,.08);
        box-shadow:0 14px 34px rgba(0,0,0,.22);
        overflow:hidden;
    }

    .header::before{
        content:"";
        position:absolute;
        inset:0;
        background:
            radial-gradient(circle at top left,rgba(255,255,255,.14),transparent 38%),
            radial-gradient(circle at bottom right,rgba(200,155,60,.22),transparent 38%);
        pointer-events:none;
    }

    .brand{
        position:absolute !important;
        left:50% !important;
        top:50% !important;
        transform:translate(-50%,-50%) !important;
        width:178px !important;
        height:102px !important;
        min-width:178px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        margin:0 !important;
        padding:0 !important;
        z-index:2 !important;
    }

    .brand img{
        width:168px !important;
        height:102px !important;
        object-fit:contain !important;
        max-width:none !important;
        filter:drop-shadow(0 12px 24px rgba(0,0,0,.35));
    }

    .menu-btn{
        position:absolute !important;
        right:20px !important;
        top:50% !important;
        transform:translateY(-50%) !important;
        width:52px !important;
        height:52px !important;
        border-radius:18px !important;
        border:1px solid rgba(255,255,255,.24) !important;
        background:linear-gradient(135deg,#e3b84e,#c69230) !important;
        color:#0d321b !important;
        font-size:0 !important;
        z-index:3 !important;
        box-shadow:
            0 12px 26px rgba(0,0,0,.26),
            inset 0 1px 0 rgba(255,255,255,.35) !important;
    }

    .menu-btn::before{
        content:"";
        width:23px;
        height:16px;
        display:block;
        background:
            linear-gradient(#0d321b,#0d321b) top/23px 3px no-repeat,
            linear-gradient(#0d321b,#0d321b) center/23px 3px no-repeat,
            linear-gradient(#0d321b,#0d321b) bottom/23px 3px no-repeat;
    }

    .nav-menu{
        display:none !important;
        position:absolute !important;
        top:124px !important;
        left:16px !important;
        right:16px !important;
        width:auto !important;
        padding:14px !important;
        border-radius:24px !important;
        background:rgba(8,32,18,.96) !important;
        backdrop-filter:blur(20px);
        box-shadow:0 26px 70px rgba(0,0,0,.35);
        z-index:9999 !important;
        flex-direction:column !important;
        gap:8px !important;
    }

    .nav-menu.active{
        display:flex !important;
    }

    .nav-menu a{
        width:100% !important;
        padding:16px 18px !important;
        border-radius:16px !important;
        background:rgba(255,255,255,.07) !important;
        color:white !important;
        font-size:16px !important;
        font-weight:900 !important;
    }
}


/* PREMIUM QUICK ACTIONS */

.quick-actions{
    max-width:1180px;
    margin:-24px auto 24px;
    padding:0 16px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    position:relative;
    z-index:50;
}

.quick-card{
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.98),
            rgba(255,255,255,.92)
        );

    border:1px solid rgba(255,255,255,.7);

    border-radius:28px;

    min-height:120px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    box-shadow:
        0 18px 40px rgba(0,0,0,.10),
        inset 0 1px 0 rgba(255,255,255,.90);

    transition:.25s ease;
}

.quick-card:active{
    transform:scale(.96);
}

.quick-icon{
    width:62px;
    height:62px;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #0e5a2d,
            #0a341c
        );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:12px;

    box-shadow:
        0 14px 24px rgba(0,0,0,.18);
}

.quick-card span{
    color:#10351f;
    font-size:15px;
    font-weight:900;
}

/* MOBİL */

@media(max-width:900px){

    .quick-actions{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
        margin:-10px auto 20px;
        padding:0 16px;
    }

    .quick-card{
        min-height:108px;
        border-radius:24px;
    }

    .quick-icon{
        width:54px;
        height:54px;
        border-radius:18px;
        font-size:24px;
    }

    .quick-card span{
        font-size:14px;
    }
}


/* QUICK ACTIONS DÜZELTME + FLOAT WHATSAPP KALDIR */

.quick-actions{
    margin:28px auto 24px !important;
    position:relative !important;
    z-index:30 !important;
}

@media(max-width:900px){

    .quick-actions{
        margin:20px auto 24px !important;
        padding:0 16px !important;
    }

    .home-slider{
        margin-bottom:0 !important;
    }

    .whatsapp-fixed{
        display:none !important;
    }
}


/* PREMIUM APP BOTTOM NAV */

.mobile-bottom-nav{
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;

    height:78px;

    background:
        linear-gradient(
            135deg,
            rgba(7,40,20,.94),
            rgba(16,70,36,.92)
        );

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:space-around;

    z-index:99999;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

    overflow:hidden;
}

.mobile-bottom-nav::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at top left,
        rgba(255,255,255,.12),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(200,155,60,.16),
        transparent 35%);

    pointer-events:none;
}

.mobile-bottom-nav a{
    flex:1;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:rgba(255,255,255,.78);

    font-size:11px;
    font-weight:800;

    position:relative;

    transition:.22s ease;
}

.mobile-bottom-nav a:active{
    transform:scale(.92);
}

.mobile-bottom-nav a span{
    font-size:21px;
    margin-bottom:4px;
    transition:.22s ease;
}

.mobile-bottom-nav a.active{
    color:#fff;
}

.mobile-bottom-nav a.active span{
    transform:translateY(-2px) scale(1.15);
}

.mobile-bottom-nav a.active::before{
    content:"";
    position:absolute;

    width:56px;
    height:56px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #e2b64d,
            #c9962f
        );

    z-index:-1;

    box-shadow:
        0 12px 30px rgba(201,150,47,.45);

    animation:pulseNav 2.2s infinite;
}

@keyframes pulseNav{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.06);
    }

    100%{
        transform:scale(1);
    }
}

/* SAFE AREA */

@supports (padding: max(0px)) {

    .mobile-bottom-nav{
        padding-bottom:
        max(0px, env(safe-area-inset-bottom));
    }
}

/* DESKTOP */

@media(min-width:901px){

    .mobile-bottom-nav{
        display:none !important;
    }
}


/* MOBİL APP LOADING SCREEN */

#app-loader{
    position:fixed;
    inset:0;
    z-index:999999;
    background:linear-gradient(135deg,#082b18,#145c34);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:opacity .45s ease, visibility .45s ease;
}

#app-loader img{
    width:170px;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.35));
    animation:loaderPulse 1.4s infinite;
}

#app-loader span{
    margin-top:18px;
    color:white;
    font-weight:900;
    letter-spacing:.5px;
}

#app-loader.hide{
    opacity:0;
    visibility:hidden;
}

@keyframes loaderPulse{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.06)}
}


/* APP PAGE TRANSITIONS */

body{
    animation:pageFade .45s ease;
}

@keyframes pageFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.page-transition{
    position:fixed;
    inset:0;

    background:
        linear-gradient(
            135deg,
            #082b18,
            #145c34
        );

    z-index:9999999;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

.page-transition.active{
    opacity:1;
    visibility:visible;
}

.page-transition::after{
    content:"";

    position:absolute;
    top:50%;
    left:50%;

    width:74px;
    height:74px;

    margin-left:-37px;
    margin-top:-37px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.18);
    border-top-color:#e0b64d;

    animation:spinLoader .7s linear infinite;
}

@keyframes spinLoader{
    to{
        transform:rotate(360deg);
    }
}

/* TIKLAMA EFEKTİ */

a,
button{
    -webkit-tap-highlight-color:transparent;
}

a:active,
button:active{
    transform:scale(.97);
}


/* =========================================
   PREMIUM GLASS UI SYSTEM
========================================= */

.card,
.stat-card,
.blog-card,
.process-grid div,
.page-card,
.topbar,
.quick-card{

    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.92),
            rgba(255,255,255,.82)
        ) !important;

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,255,255,.65);

    box-shadow:
        0 20px 50px rgba(15,23,42,.08),
        inset 0 1px 0 rgba(255,255,255,.95);

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

/* LIGHT EFFECT */

.card::before,
.stat-card::before,
.blog-card::before,
.process-grid div::before,
.page-card::before,
.topbar::before,
.quick-card::before{

    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.38),
            transparent 38%
        );

    pointer-events:none;
}

/* PREMIUM HOVER */

.card:hover,
.stat-card:hover,
.blog-card:hover,
.process-grid div:hover,
.quick-card:hover{

    transform:
        translateY(-4px);

    box-shadow:
        0 28px 60px rgba(15,23,42,.14),
        inset 0 1px 0 rgba(255,255,255,.95);
}

/* PROCESS CARDS */

.process-grid div{

    background:
        linear-gradient(
            180deg,
            rgba(11,52,28,.92),
            rgba(16,70,36,.90)
        ) !important;

    border:
        1px solid rgba(255,255,255,.08);
}

/* PREMIUM SECTION TITLE */

.section-title h2{

    letter-spacing:-1.5px;

    text-shadow:
        0 2px 10px rgba(0,0,0,.04);
}

/* CONTENT TEXT */

.content,
.about-block p{

    line-height:1.9;
    font-size:17px;
}

/* IMAGE PREMIUM EFFECT */

.gallery-item img,
.blog-card img,
.content img{

    box-shadow:
        0 18px 45px rgba(0,0,0,.16);

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.gallery-item img:hover,
.blog-card img:hover,
.content img:hover{

    transform:scale(1.02);

    box-shadow:
        0 24px 55px rgba(0,0,0,.22);
}

/* MOBILE APP FEEL */

@media(max-width:900px){

    .card,
    .stat-card,
    .blog-card,
    .process-grid div,
    .quick-card{

        border-radius:30px !important;
    }

    .section{

        padding-top:28px !important;
    }

    .section-title h2{

        font-size:34px !important;
        line-height:1.05 !important;
    }
}


/* =========================================
   LIVE NOTIFICATION SYSTEM
========================================= */

.live-notify{
    position:fixed;
    left:18px;
    bottom:108px;

    width:320px;
    max-width:calc(100% - 36px);

    z-index:999999;

    display:flex;
    align-items:flex-start;
    gap:14px;

    padding:18px;

    border-radius:26px;

    background:
        linear-gradient(
            135deg,
            rgba(7,40,20,.96),
            rgba(16,70,36,.94)
        );

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 24px 60px rgba(0,0,0,.30);

    color:white;

    transform:
        translateY(120px);

    opacity:0;

    transition:
        .55s cubic-bezier(.22,1,.36,1);
}

.live-notify.show{
    transform:translateY(0);
    opacity:1;
}

.live-notify-icon{
    min-width:54px;
    width:54px;
    height:54px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #e1b64e,
            #c7922e
        );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;

    box-shadow:
        0 12px 24px rgba(0,0,0,.22);
}

.live-notify-content strong{
    display:block;
    font-size:15px;
    margin-bottom:6px;
    font-weight:900;
}

.live-notify-content p{
    margin:0;
    color:rgba(255,255,255,.78);
    line-height:1.5;
    font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

    .live-notify{
        left:14px;
        right:14px;
        bottom:104px;

        width:auto;

        border-radius:24px;
        padding:16px;
    }

    .live-notify-icon{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:16px;
        font-size:22px;
    }
}

/* PREMIUM TESTIMONIALS */

.testimonials-section{
    padding-top:80px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial-card{
    position:relative;
    background:white;
    border-radius:32px;
    padding:30px;
    box-shadow:0 20px 55px rgba(0,0,0,.09);
    border:1px solid rgba(18,53,31,.08);
    overflow:hidden;
}

.testimonial-card::before{
    content:"“";
    position:absolute;
    right:24px;
    top:8px;
    font-size:110px;
    line-height:1;
    color:rgba(200,155,60,.14);
    font-family:Georgia, serif;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.testimonial-top img,
.testimonial-avatar{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:22px;
    object-fit:cover;
    background:linear-gradient(135deg,#12351f,#c89b3c);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:24px;
}

.testimonial-top h3{
    margin:0 0 5px;
    color:#12351f;
    font-size:20px;
}

.testimonial-top span{
    color:#6b7280;
    font-size:14px;
    font-weight:700;
}

.testimonial-stars{
    color:#c89b3c;
    font-size:21px;
    letter-spacing:2px;
    margin-bottom:14px;
}

.testimonial-card p{
    color:#374151;
    line-height:1.8;
    margin:0;
    position:relative;
    z-index:2;
}

@media(max-width:900px){
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        border-radius:30px;
        padding:26px;
    }
}


/* PREMIUM MAP SECTION */

.map-card{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:24px;
    background:white;
    border-radius:34px;
    padding:28px;
    box-shadow:0 22px 60px rgba(0,0,0,.10);
}

.map-info{
    background:linear-gradient(135deg,#12351f,#1f5b34);
    color:white;
    border-radius:28px;
    padding:34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.map-info h3{
    font-size:32px;
    margin:0 0 12px;
}

.map-info p{
    color:rgba(255,255,255,.82);
    font-size:18px;
    margin-bottom:24px;
}

.map-embed iframe{
    width:100%;
    height:420px;
    border:0;
    border-radius:28px;
    display:block;
}

@media(max-width:900px){
    .map-card{
        grid-template-columns:1fr;
        padding:16px;
        border-radius:30px;
    }

    .map-info{
        padding:26px;
        border-radius:26px;
    }

    .map-embed iframe{
        height:320px;
        border-radius:24px;
    }
}


/* PREMIUM FAQ */

.faq-list{
    max-width:950px;
    margin:0 auto;
    display:grid;
    gap:18px;
}

.faq-item{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:0;
    background:none;
    padding:28px;
    font-size:20px;
    font-weight:900;
    color:#10351f;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
}

.faq-question span{
    font-size:32px;
    color:#c89b3c;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.35s ease;
}

.faq-answer p{
    padding:0 28px 28px;
    margin:0;
    line-height:1.8;
    color:#4b5563;
}

.faq-item.active .faq-answer{
    max-height:400px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:900px){

    .faq-question{
        font-size:17px;
        padding:24px;
    }
}


/* HİZMET KARTLARI GERÇEK GÖRSEL */

.service-img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    margin-bottom:24px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.card{
    padding:26px !important;
}

.card h3{
    margin-top:0;
}

@media(max-width:900px){
    .service-img{
        height:190px;
        border-radius:22px;
    }
}


.about-premium{
    max-width:1320px;
    margin:80px auto;
    padding:0 22px;
}

.about-premium-inner{
    background:#fff;
    border-radius:42px;
    padding:48px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
    box-shadow:0 28px 80px rgba(0,0,0,.10);
}

.about-premium-text small{
    color:#c89b3c;
    font-weight:900;
    letter-spacing:4px;
}

.about-premium-text h2{
    color:#10351f;
    font-size:52px;
    line-height:1.1;
    margin:18px 0;
}

.about-line{
    display:block;
    width:70px;
    height:5px;
    background:#c89b3c;
    border-radius:99px;
    margin:24px 0;
}

.about-content{
    font-size:18px;
    line-height:1.8;
    color:#374151;
}

.about-premium-visual{
    background:#f6f1e8;
    border-radius:34px;
    padding:18px;
}

.about-premium-visual > img{
    width:100%;
    height:390px;
    object-fit:cover;
    border-radius:28px;
    display:block;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    padding-top:20px;
}

.about-features div{
    text-align:center;
}

.about-features span{
    font-size:28px;
    display:block;
    margin-bottom:8px;
}

.about-features strong{
    color:#10351f;
    font-size:13px;
    text-transform:uppercase;
}

.about-block,
.about-image{
    display:none !important;
}

@media(max-width:900px){
    .about-premium{
        margin:40px auto;
        padding:0 16px;
    }

    .about-premium-inner{
        grid-template-columns:1fr;
        padding:24px;
        border-radius:32px;
    }

    .about-premium-text h2{
        font-size:34px;
    }

    .about-premium-visual > img{
        height:240px;
    }

    .about-features{
        grid-template-columns:repeat(2,1fr);
    }
}


/* PREMIUM GALERİ */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-item{
    display:block;
    background:white;
    border-radius:28px;
    padding:12px;
    text-decoration:none;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:22px;
    display:block;
}

.gallery-item span{
    display:none !important;
}

@media(max-width:900px){
    .gallery-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery-item img{
        height:230px;
    }
}


/* LIGHTBOX */

.gallery-item{
    cursor:pointer;
}

.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.25s;
    padding:20px;
}

.gallery-lightbox.active{
    opacity:1;
    visibility:visible;
}

.gallery-lightbox img{
    max-width:92%;
    max-height:88vh;
    border-radius:24px;
    box-shadow:0 25px 80px rgba(0,0,0,.5);
}

.gallery-close{
    position:absolute;
    top:22px;
    right:28px;
    color:white;
    font-size:48px;
    font-weight:900;
    cursor:pointer;
}


/* SITE GALERI LIGHTBOX */

.gallery-item{
    cursor:pointer;
}

.site-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
    padding:22px;
}

.site-lightbox.active{
    opacity:1;
    visibility:visible;
}

.site-lightbox img{
    max-width:92%;
    max-height:88vh;
    border-radius:26px;
    box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.site-lightbox-close{
    position:absolute;
    top:22px;
    right:30px;
    color:white;
    font-size:52px;
    font-weight:900;
    cursor:pointer;
    line-height:1;
}

@media(max-width:900px){
    .site-lightbox img{
        max-width:96%;
        max-height:82vh;
        border-radius:20px;
    }

    .site-lightbox-close{
        top:16px;
        right:22px;
        font-size:46px;
    }
}

/* FULL GALLERY VIEWER */

.gallery-viewer{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.25s;
}

.gallery-viewer.active{
    opacity:1;
    visibility:visible;
}

.gallery-viewer img{
    max-width:92%;
    max-height:88vh;
    border-radius:24px;
    object-fit:contain;
    box-shadow:0 25px 80px rgba(0,0,0,.55);
}

.gallery-close{
    position:absolute;
    top:20px;
    right:28px;
    color:white;
    font-size:54px;
    cursor:pointer;
    font-weight:900;
    z-index:5;
}

.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:64px;
    height:64px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:white;
    font-size:42px;
    cursor:pointer;
    backdrop-filter:blur(10px);
}

.gallery-nav.prev{
    left:24px;
}

.gallery-nav.next{
    right:24px;
}

.gallery-item{
    cursor:pointer;
}

@media(max-width:900px){

    .gallery-viewer img{
        max-width:96%;
        max-height:82vh;
        border-radius:18px;
    }

    .gallery-nav{
        width:52px;
        height:52px;
        font-size:34px;
    }

    .gallery-nav.prev{
        left:10px;
    }

    .gallery-nav.next{
        right:10px;
    }
}


/* TRUST SECTION */

.trust-section{
    max-width:1320px;
    margin:90px auto;
    padding:0 22px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:40px;
}

.trust-card{
    background:white;
    border-radius:30px;
    padding:34px 28px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.25s;
}

.trust-card:hover{
    transform:translateY(-6px);
}

.trust-icon{
    width:74px;
    height:74px;
    border-radius:24px;
    background:linear-gradient(135deg,#10351f,#c89b3c);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:24px;
}

.trust-card h3{
    color:#10351f;
    font-size:28px;
    margin:0 0 14px;
}

.trust-card p{
    color:#6b7280;
    line-height:1.8;
    margin:0;
}

@media(max-width:900px){

    .trust-section{
        padding:0 16px;
        margin:50px auto;
    }

    .trust-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .trust-card{
        padding:26px 22px;
        border-radius:26px;
    }

    .trust-card h3{
        font-size:24px;
    }
}

@media(max-width:900px){
    .contact-hero {
        padding:72px 18px 92px;
    }

    .contact-actions,
    .contact-grid {
        grid-template-columns:1fr;
    }

    .contact-actions {
        margin-top:-72px;
    }

    .contact-action {
        min-height:140px;
    }

    .contact-action strong {
        font-size:24px;
        overflow-wrap:anywhere;
    }

    .contact-card {
        padding:26px;
    }

    .contact-card h2 {
        font-size:28px;
    }
}
