﻿:root {
        --bg-1: #090a16;
        --bg-2: #130d24;
        --bg-3: #1c112f;
        --rose: #ff5f8f;
        --rose-soft: #ff8db0;
        --gold: #f7c57f;
        --cream: #fff3e6;
        --text: #f6f2ff;
        --muted: #cbc3e6;
        --glass: rgba(255, 255, 255, 0.08);
        --glass-border: rgba(255, 255, 255, 0.2);
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        min-height: 100vh;
        font-family: "Space Grotesk", sans-serif;
        color: var(--text);
        background: radial-gradient(circle at 15% 10%, #28163e 0%, transparent 35%),
          radial-gradient(circle at 85% 20%, #311343 0%, transparent 36%),
          linear-gradient(140deg, var(--bg-1), var(--bg-2) 35%, var(--bg-3));
        overflow-x: hidden;
      }

      .bg-aurora {
        position: fixed;
        inset: 0;
        z-index: -3;
        pointer-events: none;
      }

      .blob {
        position: absolute;
        border-radius: 999px;
        filter: blur(30px);
        opacity: 0.32;
        animation: drift 14s ease-in-out infinite;
      }

      .blob.one {
        width: 300px;
        height: 300px;
        background: #ff5f8f;
        top: 12%;
        left: -90px;
      }

      .blob.two {
        width: 380px;
        height: 380px;
        background: #7e58ff;
        top: 56%;
        right: -130px;
        animation-delay: -4s;
      }

      .blob.three {
        width: 260px;
        height: 260px;
        background: #f7c57f;
        bottom: -90px;
        left: 45%;
        animation-delay: -8s;
      }

      @keyframes drift {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        50% {
          transform: translate(30px, -36px) scale(1.08);
        }
      }

      .hearts-layer {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -2;
      }

      .heart {
        position: absolute;
        color: rgba(255, 143, 176, 0.6);
        animation: float-up linear forwards;
      }

      @keyframes float-up {
        0% {
          transform: translateY(0) scale(0.5);
          opacity: 0;
        }
        12% {
          opacity: 1;
        }
        100% {
          transform: translateY(-120vh) scale(1.3) rotate(18deg);
          opacity: 0;
        }
      }

      .container {
        width: min(1160px, 92vw);
        margin: 0 auto;
      }

      .navbar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 50;
        transition: all 0.28s ease;
      }

      .navbar-inner {
        width: min(1160px, 92vw);
        margin: 18px auto 0;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid transparent;
        border-radius: 16px;
      }

      .navbar.scrolled .navbar-inner {
        background: rgba(11, 11, 25, 0.75);
        backdrop-filter: blur(10px);
        border-color: var(--glass-border);
        margin-top: 10px;
        box-shadow: 0 10px 38px rgba(7, 7, 20, 0.4);
      }

      .logo {
        text-decoration: none;
        color: var(--cream);
        font-family: "Great Vibes", cursive;
        font-size: clamp(1.8rem, 1.2rem + 1.3vw, 2.5rem);
      }

      .logo i {
        color: var(--rose-soft);
        margin-right: 8px;
      }

      .nav-links {
        display: flex;
        gap: 18px;
        list-style: none;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-size: 0.96rem;
        transition: color 0.2s ease;
      }

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

      .nav-links a[aria-current="page"] {
        color: var(--cream);
        text-decoration: underline;
        text-underline-offset: 6px;
      }

      .hero {
        min-height: 100vh;
        display: grid;
        place-items: center;
        padding-top: 92px;
      }

      .hero-card {
        width: min(980px, 100%);
        border: 1px solid var(--glass-border);
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
        backdrop-filter: blur(10px);
        border-radius: 28px;
        padding: clamp(1.5rem, 1.2rem + 2vw, 3rem);
        position: relative;
        overflow: hidden;
      }

      .hero-card::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(247, 197, 127, 0.22), transparent 65%);
        top: -120px;
        right: -90px;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.08);
        color: var(--cream);
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 0.87rem;
        margin-bottom: 16px;
      }

      .hero h1 {
        font-family: "Cinzel", serif;
        line-height: 1.08;
        font-size: clamp(2.2rem, 1.4rem + 3.2vw, 4.2rem);
        letter-spacing: 0.03em;
      }

      .hero h1 span {
        color: var(--rose-soft);
      }

      .hero p {
        color: var(--muted);
        margin-top: 16px;
        max-width: 62ch;
        font-size: clamp(1rem, 0.94rem + 0.5vw, 1.15rem);
        line-height: 1.75;
      }

      .hero-actions {
        margin-top: 28px;
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 12px;
        border: 1px solid transparent;
        padding: 12px 18px;
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      }

      .btn.primary {
        background: linear-gradient(120deg, var(--rose), #ff8db0);
        color: #fff;
        box-shadow: 0 12px 30px rgba(255, 95, 143, 0.32);
      }

      .btn.secondary {
        color: var(--cream);
        border-color: rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.05);
      }

      .btn:hover {
        transform: translateY(-2px);
      }

      .section {
        padding: clamp(70px, 9vw, 120px) 0 0;
      }

      .section-title {
        font-family: "Cinzel", serif;
        font-size: clamp(1.8rem, 1.35rem + 1.7vw, 3rem);
        text-align: center;
      }

      .section-sub {
        text-align: center;
        color: var(--muted);
        max-width: 70ch;
        margin: 14px auto 0;
        line-height: 1.7;
      }

      .story-grid {
        margin-top: 36px;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 22px;
      }

      .panel {
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        background: var(--glass);
        backdrop-filter: blur(8px);
        padding: clamp(1rem, 0.7rem + 1.4vw, 1.8rem);
      }

      .story-list {
        margin-top: 18px;
        display: grid;
        gap: 12px;
      }

      .story-item {
        display: grid;
        grid-template-columns: 32px 1fr;
        gap: 10px;
        align-items: start;
      }

      .story-item i {
        color: var(--rose-soft);
        margin-top: 5px;
      }

      .story-item h3 {
        font-size: 1.04rem;
      }

      .story-item p {
        margin-top: 4px;
        color: var(--muted);
        line-height: 1.65;
        font-size: 0.95rem;
      }

      .story-image {
        min-height: 340px;
        border-radius: 18px;
        overflow: hidden;
        position: relative;
      }

      .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.03);
        transition: transform 0.8s ease;
      }

      .story-image:hover img {
        transform: scale(1.11);
      }

      .story-image::after {
        content: "Sonsuz aşk";
        position: absolute;
        left: 18px;
        bottom: 16px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(10, 9, 25, 0.62);
        border: 1px solid rgba(255, 255, 255, 0.35);
        font-size: 0.86rem;
      }

      .timeline {
        margin-top: 36px;
        display: grid;
        gap: 14px;
      }

      .timeline-item {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 14px;
        align-items: start;
        border: 1px solid var(--glass-border);
        background: var(--glass);
        border-radius: 16px;
        padding: 14px;
        transform: translateY(16px);
        opacity: 0;
        transition: transform 0.55s ease, opacity 0.55s ease;
      }

      .timeline-item.show {
        transform: translateY(0);
        opacity: 1;
      }

      .timeline-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(255, 141, 176, 0.18);
        color: var(--rose-soft);
      }

      .timeline-item h3 {
        font-size: 1.03rem;
      }

      .timeline-item p {
        margin-top: 6px;
        line-height: 1.6;
        color: var(--muted);
        font-size: 0.94rem;
      }

      .metrics {
        margin-top: 34px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
      }

      .metric {
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 18px 14px;
        text-align: center;
        background: rgba(255, 255, 255, 0.06);
      }

      .metric .num {
        font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem);
        font-weight: 700;
        color: var(--gold);
      }

      .metric .label {
        margin-top: 6px;
        font-size: 0.84rem;
        color: var(--muted);
      }

      .promise-grid {
        margin-top: 34px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }

      .promise {
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
        padding: 18px;
      }

      .promise i {
        color: var(--rose-soft);
        font-size: 1.2rem;
      }

      .promise h3 {
        margin-top: 8px;
        font-size: 1rem;
      }

      .promise p {
        margin-top: 7px;
        color: var(--muted);
        line-height: 1.6;
        font-size: 0.93rem;
      }

      .gallery-grid {
        margin-top: 34px;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 10px;
      }

      .gallery-grid figure {
        border-radius: 14px;
        overflow: hidden;
        min-height: 170px;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s ease, filter 0.55s ease;
      }

      .gallery-grid figure:hover img {
        transform: scale(1.08);
        filter: saturate(1.1);
      }

      .gallery-grid figure::after {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        bottom: 10px;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.22);
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 0.76rem;
      }

      .g1 {
        grid-column: span 4;
      }
      .g2 {
        grid-column: span 5;
      }
      .g3 {
        grid-column: span 3;
      }
      .g4 {
        grid-column: span 6;
      }
      .g5 {
        grid-column: span 3;
      }
      .g6 {
        grid-column: span 3;
      }

      .proposal-wrap {
        margin-top: 36px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 22px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 0.95fr;
        background: linear-gradient(150deg, rgba(255, 143, 176, 0.12), rgba(126, 88, 255, 0.13));
      }

      .proposal-text {
        padding: clamp(1.2rem, 0.8rem + 1.7vw, 2.1rem);
      }

      .proposal-text h3 {
        font-family: "Great Vibes", cursive;
        font-size: clamp(2.2rem, 1.8rem + 1.8vw, 3.1rem);
      }

      .proposal-text p {
        margin-top: 12px;
        line-height: 1.75;
        color: var(--muted);
      }

      .proposal-actions {
        margin-top: 18px;
        min-height: 64px;
        position: relative;
      }

      .proposal-actions button {
        border: none;
        padding: 12px 20px;
        border-radius: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease;
      }

      .yes-btn {
        background: linear-gradient(120deg, var(--rose), #ff86ad);
        color: #fff;
        box-shadow: 0 10px 28px rgba(255, 95, 143, 0.34);
      }

      .no-btn {
        margin-left: 8px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.28) !important;
        color: var(--muted);
        position: absolute;
      }

      .proposal-image img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
      }

      .pricing-grid {
        margin-top: 34px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }

      .package-card {
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.07);
        display: flex;
        flex-direction: column;
      }

      .package-card.featured {
        background: linear-gradient(160deg, rgba(255, 95, 143, 0.2), rgba(126, 88, 255, 0.18));
        box-shadow: 0 12px 28px rgba(255, 95, 143, 0.22);
      }

      .package-badge {
        display: inline-flex;
        width: fit-content;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        font-size: 0.8rem;
        color: var(--cream);
        margin-bottom: 10px;
      }

      .package-card h3 {
        font-size: 1.2rem;
      }

      .package-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold);
        margin: 6px 0 12px;
      }

      .package-features {
        list-style: none;
        display: grid;
        gap: 10px;
        margin-bottom: 16px;
      }

      .package-features li {
        color: var(--muted);
        font-size: 0.92rem;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .package-features i {
        color: var(--rose-soft);
      }

      .package-btn {
        margin-top: auto;
        justify-content: center;
      }

      .references {
        margin-top: 34px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }

      .ref-card {
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.07);
      }

      .ref-card .ref-top {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .ref-card i {
        color: var(--gold);
      }

      .ref-card a {
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--cream);
        text-decoration: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
      }

      .final-note {
        margin: 58px auto 24px;
        text-align: center;
        color: var(--muted);
      }

      .final-note strong {
        color: var(--rose-soft);
        font-family: "Cinzel", serif;
      }

      .page-main {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 44px;
      }

      .page-hero {
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
        backdrop-filter: blur(10px);
        padding: clamp(1.3rem, 1rem + 1.8vw, 2.6rem);
      }

      .page-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.88rem;
        color: var(--cream);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        padding: 7px 12px;
        background: rgba(255, 255, 255, 0.07);
      }

      .page-hero h1 {
        margin-top: 12px;
        font-family: "Cinzel", serif;
        font-size: clamp(2rem, 1.4rem + 2.3vw, 3.2rem);
      }

      .page-hero h1 span {
        color: var(--rose-soft);
      }

      .page-hero p {
        margin-top: 12px;
        color: var(--muted);
        line-height: 1.72;
        max-width: 74ch;
      }

      .page-grid {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 14px;
      }

      .glass-card {
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
        padding: 18px;
      }

      .glass-card h2 {
        font-size: 1.2rem;
      }

      .glass-card p {
        margin-top: 8px;
        color: var(--muted);
        line-height: 1.7;
      }

      .icon-list {
        list-style: none;
        margin-top: 14px;
        display: grid;
        gap: 10px;
      }

      .icon-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--muted);
      }

      .icon-list i {
        color: var(--rose-soft);
      }

      .contact-form {
        margin-top: 12px;
        display: grid;
        gap: 10px;
      }

      .input,
      .textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 12px;
        background: rgba(7, 8, 20, 0.45);
        color: var(--text);
        padding: 11px 12px;
        font-family: inherit;
        font-size: 0.95rem;
      }

      .textarea {
        min-height: 120px;
        resize: vertical;
      }

      .input::placeholder,
      .textarea::placeholder {
        color: #b6afd3;
      }

      .input:focus,
      .textarea:focus {
        outline: none;
        border-color: var(--rose-soft);
        box-shadow: 0 0 0 3px rgba(255, 141, 176, 0.18);
      }

      .contact-actions {
        margin-top: 6px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .reference-grid {
        margin-top: 28px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }

      .site-footer {
        width: min(1160px, 92vw);
        margin: 36px auto 20px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        color: var(--muted);
        font-size: 0.9rem;
        text-align: center;
      }

      .toast {
        position: fixed;
        left: 50%;
        bottom: 26px;
        transform: translateX(-50%) translateY(18px);
        background: rgba(12, 12, 30, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: var(--cream);
        padding: 11px 16px;
        border-radius: 12px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.32s ease;
      }

      .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      @media (max-width: 950px) {
        .story-grid,
        .proposal-wrap,
        .page-grid {
          grid-template-columns: 1fr;
        }

        .metrics {
          grid-template-columns: repeat(2, 1fr);
        }

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

      @media (max-width: 760px) {
        .navbar-inner {
          padding: 12px 14px;
        }

        .nav-links {
          display: none;
        }

        .metrics,
        .promise-grid,
        .references,
        .pricing-grid,
        .reference-grid {
          grid-template-columns: 1fr;
        }

        .g1,
        .g2,
        .g3,
        .g4,
        .g5,
        .g6 {
          grid-column: span 12;
        }

        .no-btn {
          position: relative;
          margin-left: 10px;
        }
      }
