/* ==========================================================================
   GLOBAL & VARIABLES - BENTO & PLAYFUL STYLE
   ========================================================================== */
:root {
    --bg-color: #fcfaf5;
    --text-dark: #2c2c2c;
    --text-light: #6e6e6e;

    /* Bento Colors */
    --bento-red: #f75c4c;
    --bento-yellow: #ffc72c;
    --bento-blue: #347deb;
    --bento-green: #4caf50;
    --bento-teal: #42a895;
    --bento-purple: #b373db;
    --bento-pink: #f48fb1;

    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    color: var(--text-dark);
}

.pill-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    border: 2px solid var(--text-dark);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 1);
    margin-bottom: 20px;
}

/* ===== PAGE LOADER ===== */
.page-loader{position:fixed;inset:0;background:var(--bg-color);z-index:10000;display:flex;flex-direction:column;align-items:center;justify-content:center;transition:opacity .6s,visibility .6s}
.page-loader.hidden{opacity:0;visibility:hidden;pointer-events:none}
.loader-logo{font-size:72px;animation:loaderBounce 1.2s ease infinite}
.loader-text{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;margin-top:20px;opacity:0;animation:loaderFadeUp .6s .3s forwards}
.loader-bar{width:140px;height:4px;background:#eaeaea;border-radius:4px;margin-top:28px;overflow:hidden}
.loader-bar-fill{width:0;height:100%;background:linear-gradient(90deg,var(--bento-red),var(--bento-yellow));border-radius:4px;animation:loaderProgress 1.8s ease forwards}
@keyframes loaderBounce{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-20px) scale(1.1)}}
@keyframes loaderFadeUp{to{opacity:1;transform:translateY(0)}}
@keyframes loaderProgress{to{width:100%}}

/* ===== PARALLAX FLOATING SHAPES ===== */
.parallax-shape{position:absolute;pointer-events:none;z-index:0;will-change:transform}
.shape-1{width:90px;height:90px;border-radius:50%;background:var(--bento-red);opacity:.08;top:15%;right:-20px}
.shape-2{width:65px;height:65px;background:var(--bento-blue);opacity:.08;transform:rotate(45deg);bottom:25%;left:-15px}
.shape-3{width:50px;height:50px;border-radius:12px;background:var(--bento-yellow);opacity:.1;top:50%;right:8%;transform:rotate(30deg)}
.shape-4{width:40px;height:40px;border-radius:50%;background:var(--bento-green);opacity:.08;bottom:5%;right:20%}

/* ===== GHOST CTA ===== */
.btn-ghost{padding:14px 28px;border-radius:50px;font-weight:700;font-size:15px;background:transparent;border:2px solid var(--text-dark);color:var(--text-dark);transition:all .3s;display:inline-flex;align-items:center;gap:8px}
.btn-ghost:hover{background:var(--text-dark);color:#fff;transform:translateY(-2px)}

/* ===== LOGO RESPONSIVE ===== */
.logo-short{display:none}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
    left: 0;
    right: 0;
    background: rgba(252, 250, 245, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
    padding: 20px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    transition: padding 0.3s;
}

nav.stuck {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.nav-links a:hover {
    color: var(--bento-red);
}

.btn-main {
    background: var(--text-dark);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid var(--text-dark);
}

.btn-main:hover {
    transform: translateY(-2px);
    background: var(--bento-red);
    border-color: var(--bento-red);
}

/* MOBILE MENU */
.ham {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
}

/* Dijital Teslimat mobile icon — hidden on desktop */
.nav-teslimat-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bento-red);
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.nav-teslimat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(247,92,76,0.4);
}
.nav-teslimat-icon svg { stroke: #fff; }

.mob-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mob-menu.open {
    transform: translateX(0);
}

.mob-menu a {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
}

.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 199;
    display: none;
}

.mob-overlay.open {
    display: block;
}

.close-mob {
    align-self: flex-end;
    font-size: 32px;
    margin-bottom: 20px;
}

/* HERO BENTO */
.hero {
    padding-top: 130px;
    padding-bottom: 80px;
}

.bento-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-box {
    max-width: 100%;
    overflow: hidden; /* Prevent content bleeding */
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-title {
    background: #fff;
    border: 2px solid #eaeaea;
    grid-row: span 2;
}

.box-title h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 20px;
}

.box-title p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 400px;
}

.box-img {
    background: var(--bento-yellow);
    padding: 0;
    min-height: 400px;
    border: 4px solid var(--bento-yellow);
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
}

/* STAT CARDS WITH COUNTER */
.hero-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.geom-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bento-red);
}

.geom-square {
    width: 40px;
    height: 40px;
    background: var(--bento-teal);
    transform: rotate(15deg);
}

.geom-star {
    font-size: 38px;
    color: var(--bento-yellow);
    line-height: 40px;
}

.stat-card h3 {
    font-size: 28px;
    margin-top: 10px;
}

.stat-card .stat-num {
    display: inline-block;
}

.stat-card .stat-suffix {}

.stat-card p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* REFERANS SLIDER */
.ref-sec { padding: 20px 0; background: var(--text-dark); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }

.ref-sec h3 {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-wrapper {
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin: 0 40px;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: opacity 0.3s;
}

.marquee-content img:hover {
    opacity: 1;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ABOUT */
.about-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.box-yellow {
    background: var(--bento-yellow);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.box-blue {
    background: var(--bento-blue);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-bento h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.box-blue h2 {
    color: #fff;
}

.box-yellow p,
.box-blue p {
    font-size: 16px;
    font-weight: 500;
}

.geom-accent {
    margin-bottom: 20px;
    font-size: 40px;
}

/* PRODUCTS */
.products-sec {
    background: #fff;
    border-top: 2px dashed #e0e0e0;
    border-bottom: 2px dashed #e0e0e0;
    overflow: hidden;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 48px;
    position: relative;
    display: inline-block;
}

.products-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 6px;
    background: var(--bento-red);
    border-radius: 10px;
    transform: rotate(-1deg);
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.playful-card {
    width: 200px;
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    color: #fff;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    min-height: 280px;
}

.playful-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.playful-card ul li {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    gap: 6px;
}

.playful-card ul li::before {
    content: '✦';
    font-size: 10px;
    opacity: 0.7;
}

.c-green {
    background: var(--bento-green);
    transform: rotate(-4deg) translateY(10px);
    z-index: 1;
}

.c-blue {
    background: var(--bento-blue);
    transform: rotate(2deg) translateY(30px);
    z-index: 2;
    margin-left: -20px;
}

.c-orange {
    background: var(--bento-red);
    transform: rotate(-2deg) translateY(5px);
    z-index: 3;
    margin-left: -20px;
}

.c-red {
    background: #c23b5e;
    transform: rotate(3deg) translateY(20px);
    z-index: 4;
    margin-left: -20px;
}

.c-purple {
    background: var(--bento-purple);
    transform: rotate(-3deg) translateY(10px);
    z-index: 5;
    margin-left: -20px;
}

.playful-card:hover {
    transform: translateY(-20px) rotate(0deg) scale(1.05);
    z-index: 10;
    cursor: pointer;
}

.sticker {
    position: absolute;
    top: -15px;
    right: -10px;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    border: 2px solid #000;
    transform: rotate(15deg);
}

.c-green .sticker {
    right: auto;
    left: 10px;
    top: -10px;
}

/* VIDEO BENTO */
.campaign-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
}

.box-video {
    background: var(--bento-teal);
    border-radius: var(--radius-lg);
    padding: 4px;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.box-content {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

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

.tag-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.htag {
    font-size: 12px;
    font-weight: 700;
    background: var(--bg-color);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ===== GALLERY WITH FILTER ===== */
.gallery-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.photo-card {
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: block;
    transition: opacity 0.4s, transform 0.4s;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
}

.photo-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.photo-card:hover .photo-card-label {
    opacity: 1;
}

/* ===== PRICING WIZARD ===== */
.pricing-sec {
    background: var(--text-dark);
    color: #fff;
    padding: 90px 0;
}

.pricing-sec h2 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin-bottom: 12px;
}

.pricing-sec>.container>p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 17px;
}

.wizard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wizard-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
}

.wizard-step label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.wizard-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
}

/* Slider */
.price-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bento-yellow);
    cursor: pointer;
    border: 3px solid #fff;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.slider-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--bento-yellow);
    margin-bottom: 10px;
    display: inline-block;
}

/* Service choice chips */
.chip-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.chip.selected {
    background: var(--bento-blue);
    border-color: var(--bento-blue);
}

/* Toggle */
.toggle-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle input:checked+.toggle-slider {
    background: var(--bento-green);
}

.toggle input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

/* Pricing Result */
.price-result {
    background: linear-gradient(135deg, var(--bento-blue), var(--bento-purple));
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.price-result h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    opacity: 0.8;
}

.price-estimate {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 20px 0;
    font-family: 'Outfit', sans-serif;
}

.price-estimate span {
    font-size: 22px;
    opacity: 0.7;
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.price-inclusions {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.price-inclusions p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* CONTACT */
.contact-sec {
    padding-bottom: 150px;
}

.contact-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid #eaeaea;
    margin-bottom: 12px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info a:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--bento-red);
}

.ci-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.form-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.form-box h3 {
    margin-bottom: 24px;
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
}

.fg {
    margin-bottom: 16px;
}

.fg label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 2px solid #eaeaea;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-color);
    outline: none;
    transition: border-color 0.3s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--bento-blue);
}

.btn-submit {
    width: 100%;
    background: var(--text-dark);
    color: #fff;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--bento-red);
}

/* INSTAGRAM */
.ig-sec {
    background: #fff;
    padding: 60px 0;
    border-top: 2px dashed #e0e0e0;
    text-align: center;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-sec{padding:90px 0;overflow:hidden}
.testimonials-sec h2{font-size:40px;text-align:center;margin-bottom:50px}
.testimonial-track-wrapper{position:relative;overflow:hidden}
.testimonial-track{display:flex;gap:24px;transition:transform .5s cubic-bezier(.25,.46,.45,.94)}
.testimonial-card{min-width:360px;background:#fff;border:2px solid #eaeaea;border-radius:var(--radius-lg);padding:36px;flex-shrink:0;display:flex;flex-direction:column;gap:16px;transition:border-color .3s,transform .3s}
.testimonial-card:hover{border-color:var(--bento-blue);transform:translateY(-4px)}
.testimonial-stars{color:var(--bento-yellow);font-size:22px;letter-spacing:3px}
.testimonial-text{font-size:15px;color:var(--text-light);line-height:1.8;font-style:italic;flex:1}
.testimonial-author{display:flex;align-items:center;gap:14px;margin-top:auto;padding-top:16px;border-top:1px solid #f0f0f0}
.testimonial-avatar{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,var(--bento-yellow),var(--bento-red));display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0}
.testimonial-name{font-weight:700;font-size:15px}
.testimonial-role{font-size:13px;color:var(--text-light);margin-top:2px}
.testimonial-nav{display:flex;justify-content:center;gap:12px;margin-top:36px}
.testimonial-nav button{width:50px;height:50px;border-radius:50%;background:var(--text-dark);color:#fff;font-size:20px;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer;transition:background .2s,transform .2s}
.testimonial-nav button:hover{background:var(--bento-red);transform:scale(1.1)}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-sec{background:#fff;border-top:2px dashed #e0e0e0}
.ba-slider{position:relative;max-width:800px;margin:0 auto;border-radius:var(--radius-lg);overflow:hidden;cursor:ew-resize;user-select:none;aspect-ratio:3/4; max-width:500px; margin: 0 auto;border:4px solid var(--bento-yellow)}
.ba-before,.ba-after{position:absolute;top:0;left:0;width:100%;height:100%}
.ba-before img,.ba-after img{width:100%;height:100%;object-fit:cover;border-radius:0}
.ba-after{clip-path:inset(0 0 0 50%)}
.ba-label{position:absolute;top:20px;padding:8px 18px;border-radius:50px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#fff;z-index:2}
.ba-label-before{left:20px;background:rgba(0,0,0,.5);backdrop-filter:blur(4px)}
.ba-label-after{right:20px;background:var(--bento-red)}
.ba-handle{position:absolute;top:0;bottom:0;left:50%;width:4px;background:#fff;transform:translateX(-50%);z-index:3;display:flex;flex-direction:column;align-items:center;justify-content:center}
.ba-handle-circle{width:48px;height:48px;border-radius:50%;background:#fff;box-shadow:0 4px 20px rgba(0,0,0,.3);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;color:var(--text-dark);flex-shrink:0}
.ba-handle-line{flex:1;width:4px;background:#fff;box-shadow:0 0 8px rgba(0,0,0,.2)}

/* ===== MULTI-STEP FORM ===== */
.form-progress{display:flex;justify-content:space-between;margin-bottom:32px;position:relative}
.form-progress::before{content:'';position:absolute;top:50%;left:0;right:0;height:3px;background:#eaeaea;transform:translateY(-50%);z-index:0}
.form-progress-fill{position:absolute;top:50%;left:0;height:3px;background:var(--bento-red);transform:translateY(-50%);z-index:1;transition:width .4s ease}
.form-step-indicator{width:36px;height:36px;border-radius:50%;background:#eaeaea;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;color:var(--text-light);z-index:2;transition:all .3s}
.form-step-indicator.active{background:var(--bento-red);color:#fff;transform:scale(1.15)}
.form-step-indicator.done{background:var(--bento-green);color:#fff}
.form-panel{display:none}
.form-panel.active{display:block;animation:formStepIn .4s ease}
@keyframes formStepIn{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}
.form-nav{display:flex;gap:12px;margin-top:20px}
.btn-form-prev{flex:1;padding:14px;border-radius:var(--radius-sm);font-weight:700;font-size:15px;background:#eaeaea;color:var(--text-dark);border:none;cursor:pointer;transition:background .3s}
.btn-form-prev:hover{background:#d5d5d5}
.btn-form-next{flex:1;padding:14px;border-radius:var(--radius-sm);font-weight:700;font-size:15px;background:var(--bento-blue);color:#fff;border:none;cursor:pointer;transition:background .3s}
.btn-form-next:hover{background:#2a6bd4}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: #fff;
    padding: 70px 0 30px;
}

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

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
    background: var(--bento-red);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--bento-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 500;
    transition: transform 0.3s, background 0.3s;
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    background: #1ebc5a;
    animation: none;
}

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

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .bento-hero {
        grid-template-columns: 1fr;
    }

    .box-title {
        grid-row: auto;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .playful-card {
        width: 100%;
        max-width: 300px;
        transform: none !important;
        margin: 0 0 10px 0 !important;
        cursor: default;
    }

    .playful-card:hover {
        transform: none !important;
    }

    .wizard-grid {
        grid-template-columns: 1fr;
    }

    .price-result {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {

    .nav-links,
    .nav-cta-btn {
        display: none;
    }

    .nav-teslimat-icon {
        display: flex;
        margin-left: auto;
        margin-right: 12px;
    }

    .logo-full{display:none}
    .logo-short{display:inline}
    .testimonial-card{min-width:280px;padding:28px}
    .ba-slider{aspect-ratio:3/4}
    .ba-handle-circle{width:36px;height:36px;font-size:14px}

    .ham {
        display: block;
    }

    .about-bento,
    .campaign-grid,
    .contact-bento {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== CTA POPUP ===== */
.popup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.4s; padding: 20px;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box {
    background: #fff; padding: 40px; border-radius: var(--radius-lg); max-width: 450px;
    text-align: center; position: relative; transform: translateY(20px); transition: 0.4s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.popup-overlay.show .popup-box { transform: translateY(0); }
.popup-close {
    position: absolute; top: 15px; right: 15px; width: 30px; height: 30px;
    border-radius: 50%; background: #eaeaea; color: var(--text-dark);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.popup-close:hover { background: var(--bento-red); color: #fff; }
