/* === HEADER === */

@font-face {
    font-family: 'Poppinslatin';
    src: url('../fonts/PoppinsLatin-Regular.ttf') format('truetype');
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    padding: 18px 0 14px 0; /* ↑ فاصله از بالا بیشتر شد */
}


.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    width: 42px;        /* دقیقا اندازه مناسب UI */
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-weight: 400;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.main-nav a:hover {
    color: #E83E8C;
}

.header-cta .cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #E83E8C;
    color: white;
    padding: 14px 28px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.header-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(232, 62, 140, 0.3);
}

.header-cta .cta-button .fa-music {
    font-size: 14px;
}

/* ================= MOBILE MENU ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.08);
    padding: 80px 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #E83E8C;
}

.mobile-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #E83E8C;
    color: #fff !important;
    padding: 14px;
    border-radius: 50px;
    font-weight: 500;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

/* Active States */
.mobile-menu.active {
    right: 0;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        justify-content: space-between;
    }
}

/* === تنظیمات پایه برای جلوگیری از به هم ریختگی === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* جلوگیری از اسکرول افقی */
}

/* اصلاح لوگوی غول‌آسا در اسکرین‌شات شما */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-image img {
    height: 38px;
    width: auto;
    display: block;
}


.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
}

/* === MOBILE DRAWER CSS === */
.hamburger {
    display: none; /* در دسکتاپ مخفی */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%; /* مخفی در حالت عادی */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-drawer.active {
    right: 0;
}


body.menu-open .hamburger {
    opacity: 0;
    pointer-events: none;
}

.mobile-drawer .close-btn {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff0f6;
    color: #d11267;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
}

.mobile-drawer .close-btn:hover {
    background: #ffe6f2;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    font-size: 24px;
    color: #333;
    cursor: pointer;
    float: right;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 50px;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.mobile-cta-wrapper {
    margin-top: auto; /* دکمه ته منو قرار بگیرد */
}

/* === MOBILE CTA FIX === */
.mobile-cta-wrapper .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #E83E8C;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    margin-top: auto;
}

.mobile-cta-wrapper .cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(232, 62, 140, 0.3);
}
.mobile-cta-wrapper .cta-button .fa-music {
    font-size: 14px;
}


/* === HERO SECTION STYLES === */
.hero {
    padding: 40px 0;
    background: hsl(0, 0%, 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    text-align: right;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 20px;
}

/* === RESPONSIVE QUERIES === */
@media (max-width: 992px) {
    .main-nav, .header-cta {
        display: none; /* مخفی کردن منوی دسکتاپ */
    }

    .hamburger {
        display: flex; /* نمایش همبرگر */
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        margin-top: 40px;
    }
}

/* ================= HERO SECTION ================= */

.hero {
    padding: 40px 0; /* قبلاً 100px یا بیشتر بود، کاهش دادم */
}


.hero-container{
    max-width:1280px;
    margin:auto;
    padding:0 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* left content */

.hero-content{
    max-width:520px;
}

.hero-subtitle{
    font-size:13px;
    letter-spacing:1px;
    color:#E83E8C;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:48px;
    font-weight:600;
    line-height:1.2;
    color:#111;
    margin-bottom:20px;
}

.hero h1 span{
    color:#E83E8C;
}

.hero-description{
    color:#555;
    font-size:16px;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#E83E8C;
    color:#fff;
    padding:16px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:500;
    margin-bottom:35px;
}

.hero-button:hover{
    box-shadow:0 8px 20px rgba(232,62,140,0.3);
}

/* features */

.hero-features{
    display:flex;
    gap:25px;
    font-size:14px;
    color:#666;
}

/* image */

.hero-image,
.hero-video-card{
    position:relative;
    width:520px;
    max-width:100%;
    aspect-ratio:16 / 10;
    border-radius:24px;
    overflow:hidden;
    background:#111;
    box-shadow:0 28px 70px rgba(0,0,0,0.18);
}

.hero-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:24px;
    background:#111;
}

.hero-video-overlay{
    position:absolute;
    inset:auto 24px 22px 24px;
    border:0;
    border-radius:999px;
    padding:13px 20px;
    background:rgba(0,0,0,0.45);
    color:#fff;
    font-weight:700;
    cursor:pointer;
    backdrop-filter:blur(10px);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:0.25s ease;
}

.hero-video-overlay:hover{
    background:rgba(226,55,138,0.9);
    transform:translateY(-2px);
}

.hero-video-overlay.is-hidden{
    opacity:0;
    pointer-events:none;
}

.hero-video-play-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#e2378a;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.hero-video-overlay-text{
    font-size:15px;
    letter-spacing:0.2px;
}

/* ================= AUDIO SECTION ================= */

.audio-section {
        margin-top: 10px; /* این مقدار را کمتر کن، مثلا به 20px یا 30px */
    padding: 30px 0;
    background: #fff;
    text-align: center;
}


.audio-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 50px;
}

.audio-title span {
    color: #E83E8C;
}

.audio-card {
    max-width: 1280px;
    margin: 0 auto;
    padding: 35px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 35px;
}

.audio-image img {
    width: 300px;
    height: auto;
    border-radius: 18px;
}

.audio-content {
    flex: 1;
    text-align: left;
}

.audio-quote {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 18px;
}

.play-btn {
    width: 46px;
    height: 46px;
    background: #E83E8C;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.audio-time {
    font-size: 14px;
    color: #666;
    min-width: 34px;
}

.audio-wave {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    width: 150px;
}

.wave-bar {
    width: 5px;
    height: 10px;
    background: #E83E8C;
    border-radius: 8px;
    opacity: 0.85;
    transform-origin: center bottom;
    animation: waveformPulse 0.9s ease-in-out infinite;
    animation-play-state: paused;
}

.audio-player.is-playing .wave-bar {
    animation-play-state: running;
}

.wave-bar:nth-child(1) { animation-delay: 0.00s; }
.wave-bar:nth-child(2) { animation-delay: 0.08s; }
.wave-bar:nth-child(3) { animation-delay: 0.16s; }
.wave-bar:nth-child(4) { animation-delay: 0.24s; }
.wave-bar:nth-child(5) { animation-delay: 0.32s; }
.wave-bar:nth-child(6) { animation-delay: 0.40s; }
.wave-bar:nth-child(7) { animation-delay: 0.48s; }
.wave-bar:nth-child(8) { animation-delay: 0.56s; }
.wave-bar:nth-child(9) { animation-delay: 0.64s; }
.wave-bar:nth-child(10) { animation-delay: 0.72s; }
.wave-bar:nth-child(11) { animation-delay: 0.80s; }
.wave-bar:nth-child(12) { animation-delay: 0.88s; }

@keyframes waveformPulse {
    0%, 100% {
        height: 10px;
        opacity: 0.6;
    }
    50% {
        height: 34px;
        opacity: 1;
    }
}

.audio-volume-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 92px;
}

.volume-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f9dbe9;
    color: #E83E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.volume-btn:hover {
    background: #f6c9df;
}

.volume-slider {
    width: 58px;
    accent-color: #E83E8C;
    cursor: pointer;
}

.volume-icon {
    font-size: 16px;
    color: currentColor;
    flex-shrink: 0;
}
/* ================= COMPOSER SECTION FINAL ================= */

.composer-section {
    background: #ffffff;
    padding: 40px 0;
}

.composer-card {
    max-width: 1280px;
    margin: 0 auto;
    padding: 45px 55px;
    background: #fdf7f9;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);     display: grid;
    grid-template-columns: 120px 1fr 160px;
    align-items: center;
    gap: 45px;
}

/* --- دایره سفید پشت آیکون --- */
.icon-circle {
    width: 85px;
    height: 85px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.composer-icon {
    width: 55px;
    height: auto;
}

/* --- متن وسط --- */
.composer-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    line-height: 1.55;
    margin-bottom: 18px;
}

.composer-title span {
    color: #E83E8C;
    font-weight: 600;
}

.composer-description {
    font-size: 16px;
    color: #555;
    line-height: 1.65;
}

/* --- ستون راست: NEC --- */
.composer-nec-col {
    text-align: right;
}

.nec-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 6px;
    color: #111;
    margin-bottom: 6px;
}

.nec-sub {
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
    line-height: 1.4;
}

/* --- ریسپانسیو --- */
@media (max-width: 992px) {
    .composer-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }

    .composer-nec-col {
        text-align: center;
        margin-top: 25px;
    }

    .icon-circle {
        margin: 0 auto 20px auto;
    }
}
/* ================= MOMENTS SECTION — FIXED VERSION ================= */

.moments-section {
    padding: 50px 0 110px 0;
}

.moments-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.moments-title {
    text-align: center;
    font-size: 36px;           /* بزرگ‌تر مثل نمونه */
    font-weight: 600;
    color: #222;
    margin-bottom: 65px;
}

.moments-title span {
    color: #E83E8C;
}

/* GRID */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.moment-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 28px;                 /* ارتفاع واقعی‌تر */
    text-align: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05); /* سایه نرم‌تر */
    transition: 0.25s ease;
}

.moment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* ICON */
.moment-icon {
    font-size: 44px;        /* بزرگ‌تر و مثل عکس نمونه */
    color: #E83E8C;
    margin-bottom: 25px;
}

/* TITLE */
.moment-card h4 {
    font-size: 20px;         /* بزرگ‌تر از قبل */
    font-weight: 600;        /* بولدتر */
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* زیرنویس در پرانتز (Wedding/Proposal) */
.moment-card h4 span {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

/* DESCRIPTION */
.moment-card p {
    font-size: 15px;          /* بزرگ‌تر شد */
    color: #555;
    line-height: 1.65;
    margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .moments-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
    background-color: #fff;
    text-align: center;
    padding: 5px 0;
    position: relative;
    margin-top: 5px; /* فاصله کمتر از moments-section */
}

.testimonial-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 70px;
}

.testimonial-title span {
    color: #E83E8C;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    flex: 0 0 360px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
}

.ts-stars {
    color: #E83E8C;
    font-size: 17px;
    margin-bottom: 25px;
}

.ts-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ts-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.ts-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* arrows */
.ts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #E83E8C;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    z-index: 5;
}

.ts-prev { left: 40px; }
.ts-next { right: 40px; }

.ts-arrow:hover {
    color: #c11a6c;
}

/* dots */
.ts-dots {
    margin-top: 40px;
}

.ts-dot {
    height: 10px;
    width: 10px;
    background: #E83E8C;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    opacity: 0.35;
    transition: opacity 0.2s;
    cursor: pointer;
}

.ts-dot.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
    flex: 0 0 360px;
        scroll-snap-align: center;
    }

    .ts-prev, .ts-next {
        display: none; /* فلش‌ها در موبایل مخفی شوند */
    }
}
/* ================= HOW IT WORKS ================= */

.how-section{
padding:60px 0;
background:#fff;
}

.how-container{
max-width:1280px;
margin:auto;
padding:0 10px;
text-align:center;
}

.how-title{
font-size:34px;
font-weight:600;
color:#222;
margin-bottom:80px;
}

/* steps layout */

.how-steps{
display:flex;
align-items:flex-start;
justify-content:center;
gap:40px;
}

/* step */

.how-step{
width:320px;
text-align:center;
}

/* top area (number + icon) */

.step-top{
display:flex;
align-items:center;
justify-content:center;
gap:18px;
margin-bottom:25px;
}

/* number */

.step-number{
width:36px;
height:36px;
background:#E83E8C;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
font-weight:600;
}

/* icon */

.step-icon{
width:40px;
height:auto;
}

/* title */

.how-step h3{
font-size:18px;
font-weight:600;
color:#222;
margin-bottom:12px;
}

/* description */

.how-step p{
font-size:15px;
color:#666;
line-height:1.6;
}

/* dotted line */

.step-line{
width:110px;
border-top:2px dotted #d9d9d9;
margin-top:18px;
}
/* ===== HOW TITLE UNDERLINE ===== */

.how-title{
    font-size:34px;
    font-weight:600;
    color:#222;
    text-align:center;
    margin-bottom:70px;
    position:relative;
}

/* خط صورتی زیر عنوان */

.how-title::after{
    content:"";
    width:140px;
    height:3px;
    background:#E83E8C;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-14px;
    border-radius:2px;
}

/* responsive */

@media(max-width:900px){

.how-steps{
flex-direction:column;
align-items:center;
}

.step-line{
display:none;
}

.how-step{
width:100%;
max-width:400px;
}

}
/* ====== FIXED STORY TO SONG SECTION ====== */

.story-song-section {
    padding: 70px 0 40px;
    background: #fff;
}

.story-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* عنوان سکشن */
.story-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 55px;
    position: relative;
}
.story-title::after {
    content: "";
    width: 120px;
    height: 3px;
    background: #f2a1be;
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* کانتینر کارت */
.story-card {
    display: flex;
    align-items: center;          /* عمودی وسط‌چین */
    justify-content: center;      /* حذف فاصلهٔ زیاد بین ستون‌ها */
    gap: 30px;                    /* فقط فاصلهٔ کنترل‌شده بین before و after */
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* آیکون قلب */
.story-heart img {
    width: 46px;
    height: auto;
    position: absolute;
    top: 22px;
    right: 28px;
    opacity: 0.9;
}

/* ستون قبل از آهنگ */
.story-before {
    flex: 0 1 340px;
    text-align: left;
}

.story-before h4 {
    color: #E83E8C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.story-quote {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 0 8px;
}
.quote-left,
.quote-right {
    width: 18px;
    opacity: 0.6;
    vertical-align: text-top;
}
.quote-left { margin-right: 6px; }
.quote-right {
    margin-left: 6px;
    transform: rotate(180deg);
}
.story-label {
    font-size: 13px;
    color: #777;
}

/* فلش وسط */
.story-arrow {
    font-size: 36px;        /* بزرگ‌تر از قبل */
    color: #999;
    flex-shrink: 0;
}

/* ستون بعد از آهنگ */
.story-after {
    flex: 0 1 340px;
    text-align: left;
}
.story-after h4 {
    color: #E83E8C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.story-player {
    margin-top: 8px;
    gap: 12px;
    justify-content: flex-start;
}

.story-player .audio-wave {
    width: 120px;
}

.story-player .audio-volume-controls {
    min-width: 84px;
}

/* واکنش‌گرا */
@media(max-width:1000px){
    .story-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 40px 30px;
    }
    .story-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 60px 0 90px;
    background: #ffffff;
}

.pricing-container {
    max-width: 1000px;         /* حدود همان عرضی که گفتی */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 50px;
}

/* GRID دو ستونه */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* کارت پایه */
.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 26px 34px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: left;
    border: 1px solid #f3e0ea;
    position: relative;
}

/* کارت Premium را کمی برجسته‌تر می‌کنیم */
.pricing-card-premium {
    border-color: #E83E8C;
    box-shadow: 0 10px 34px rgba(232,62,140,0.18);
}

/* Badge "Most Popular" */
.plan-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    background: #E83E8C;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

/* نام پلن */
.plan-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* قیمت */
.plan-price {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.plan-price .currency {
    font-size: 20px;
    vertical-align: top;
    margin-right: 2px;
}

.plan-price-discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.plan-price-discount .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 24px;
    font-weight: 500;
}

.plan-price-discount .new-price {
    color: #111;
    font-size: 34px;
    font-weight: 700;
}

.plan-price-discount .new-price .currency {
    font-size: 20px;
    vertical-align: top;
    margin-right: 2px;
}


/* لیست امکانات */
.plan-features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.plan-features li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

/* تیک صورتی کنار هر مورد */
.plan-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #E83E8C;
    font-size: 12px;
}

/* دکمه‌ها */
/* استایل کلی دکمه‌های پلن */
.plan-btn {
    display: inline-block; /* این خط برای تگ a بسیار مهم است تا پدینگ بگیرد */
    text-decoration: none !important; /* حذف خط زیر لینک */
    padding: 12px 28px; /* تنظیم فضای داخل دکمه */
    border-radius: 30px; /* گرد کردن گوشه‌ها */
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    font-family: inherit;
}

/* استایل دکمه بیسیک */
.basic-btn {
    background-color: transparent;
    color: #db4b8e; /* رنگ متن (صورتی) */
    border: 2px solid #db4b8e; /* حاشیه */
}

.basic-btn:hover {
    background-color: #db4b8e;
    color: #ffffff;
}

/* استایل دکمه پرمیوم */
.premium-btn {
    background-color: #db4b8e; /* رنگ پس‌زمینه (صورتی) */
    color: #ffffff !important; /* رنگ متن */
    border: 2px solid #db4b8e;
}

.premium-btn:hover {
    background-color: #c03d7a; /* کمی تیره‌تر برای هاور */
    border-color: #c03d7a;
}


/* ریسپانسیو */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        text-align: center;
    }

    .plan-features li {
        padding-left: 18px;
        text-align: left;
    }
}
/* ================= FINAL CTA SECTION ================= */

.final-cta{
    background:hsl(0, 0%, 100%);
    padding:70px 0 40px 0;
}

.cta-container{
    max-width:1100px;
    margin:auto;
    padding:40px 30px;
    background:#f9e7ee;
    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* heart icon */

.cta-heart{
    font-size:42px;
    color:#E83E8C;
    opacity:0.6;
}

/* center text */

.cta-content{
    text-align:center;
    flex:1;
}

.cta-content h2{
    font-size:32px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.cta-content p{
    font-size:16px;
    color:#666;
    margin-bottom:25px;
}

.cta-content p span{
    color:#333;
    font-weight:500;
}

/* button */

.cta-main-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#E83E8C;
    color:#fff;
    padding:14px 28px;

    border-radius:50px;
    text-decoration:none;
    font-weight:500;

    transition:0.2s;
}

.cta-main-btn:hover{
    box-shadow:0 8px 20px rgba(232,62,140,0.35);
    transform:translateY(-2px);
}

/* gift image */

.cta-gift img{
    width:120px;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 30px 0 60px;
    background: #fff;
}

.contact-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 40px;
    border-radius: 26px;
    background: linear-gradient(135deg, #fff5fa 0%, #ffe9f3 100%);
    border: 1px solid #f7d8e7;
    box-shadow: 0 12px 30px rgba(232, 62, 140, 0.12);
    text-align: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #E83E8C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.28);
}

.contact-card h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: #5f5f5f;
    margin: 0 auto 18px;
    max-width: 640px;
    line-height: 1.65;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #E83E8C;
    text-decoration: none;
    background: #fff;
    border: 1px solid #f0bfd5;
    border-radius: 999px;
    padding: 11px 24px;
    transition: all 0.2s ease;
}

.contact-email:hover {
    background: #E83E8C;
    color: #fff;
    border-color: #E83E8C;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(232, 62, 140, 0.25);
}

@media(max-width:768px){
    .contact-section {
        padding: 20px 0 45px;
    }

    .contact-card {
        margin: 0 20px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .contact-card h2 {
        font-size: 28px;
    }

    .contact-email {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
        padding: 11px 18px;
    }
}

/* ================= FOOTER ================= */

.main-footer{
    padding:25px 0;
    background:#fff;
}

.footer-container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links{
    display:flex;
    gap:35px;
}

.footer-links a{
    text-decoration:none;
    color:#777;
    font-size:14px;
}

.footer-links a:hover{
    color:#E83E8C;
}

.footer-copy{
    font-size:13px;
    color:#999;
}

/* responsive */

@media(max-width:768px){

.hero-video-overlay{
    inset:auto 16px 16px 16px;
    padding:11px 14px;
    font-size:14px;
}

.hero-video-play-icon{
    width:28px;
    height:28px;
    font-size:12px;
}

.cta-container{
    flex-direction:column;
    text-align:center;
}

.footer-container{
    flex-direction:column;
    gap:15px;
}

}


/* ================= FAQ PAGE ================= */

.faq-page {
    padding: 60px 20px 100px;
    background-color: #fdfafb;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-family: "Georgia", serif;
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-header p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-header .heart-icon {
    color: #ec005f;
    font-size: 0.9rem;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #ffedf2;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: #ffb3c6;
    box-shadow: 0 10px 24px rgba(236, 0, 95, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: bold;
    color: #111;
    font-size: 1rem;
    cursor: pointer;
}

.faq-question-text {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.faq-label {
    color: #ec005f;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 20px;
}

.faq-icon {
    color: #333;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-top: 5px;
}

.faq-answer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 10px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.faq-item.closed .faq-answer {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.faq-item.closed .faq-icon {
    transform: rotate(-90deg);
}

.faq-contact-box {
    background-color: #fff0f5;
    border-radius: 14px;
    padding: 25px 30px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-contact-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec005f;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(236, 0, 95, 0.1);
    flex-shrink: 0;
}

.faq-contact-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #111;
    font-weight: 600;
}

.faq-contact-text p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
}

.btn-contact {
    background-color: #ec005f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    background-color: #d60056;
    transform: translateY(-1px);
}

/* ================= CONTACT PAGE ================= */

.contact-page {
    padding: 60px 20px 100px;
    background: #fdfafb;
}

.contact-page-container {
    max-width: 980px;
    margin: 0 auto;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 46px;
}

.contact-page-header h1 {
    font-family: "Georgia", serif;
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-page-header p {
    font-size: 1.06rem;
    color: #444;
    max-width: 670px;
    margin: 0 auto 14px;
    line-height: 1.7;
}

.contact-page-header .heart-icon {
    color: #ec005f;
    font-size: 0.95rem;
}

.contact-page-card {
    background: linear-gradient(135deg, #fff5fa 0%, #ffeaf3 100%);
    border: 1px solid #ffd7e7;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(236, 0, 95, 0.1);
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 30px;
    text-align: center;
}

.contact-page-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #fff;
    color: #ec005f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 8px 20px rgba(236, 0, 95, 0.12);
}

.contact-page-card h2 {
    font-size: 1.55rem;
    color: #222;
    margin-bottom: 10px;
}

.contact-page-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 auto 18px;
    max-width: 560px;
}

.contact-page-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: #ec005f;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.contact-page-email:hover {
    background: #d60056;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-contact-box {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .faq-contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-page-header h1,
    .faq-header h1 {
        font-size: 2.3rem;
    }

    .contact-page-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
}


@media (max-width: 414px) {
    .mobile-drawer {
        width: min(300px, 88vw);
        padding-top: 80px;
    }

    .mobile-drawer .close-btn {
        top: 18px;
        right: 16px;
    }
}

/* ================= THANK YOU PAGE ================= */

.thank-you-page {
    position: relative;
    min-height: calc(100vh - 160px);
    padding: 70px 20px 90px;
    background: linear-gradient(180deg, #fff8fb 0%, #fdf1f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thank-you-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 28px;
    padding: 46px 40px;
    text-align: center;
    border: 1px solid #ffe0ec;
    box-shadow: 0 20px 50px rgba(232, 62, 140, 0.14);
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ffe9f3;
    color: #e83e8c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.thank-you-card h1 {
    margin: 0 0 12px;
    font-size: 2.2rem;
    color: #1d1d1f;
    font-family: "Georgia", serif;
}

.thank-you-subtitle {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.06rem;
    line-height: 1.75;
}

.thank-you-text {
    margin: 0 auto;
    max-width: 620px;
    color: #5e5e5e;
    font-size: 0.98rem;
    line-height: 1.7;
}

.thank-you-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.whatsapp-btn,
.thank-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(37, 211, 102, 0.3);
}

.thank-home-btn {
    background: #fff;
    color: #e83e8c;
    border: 1px solid #f5bfd8;
}

.thank-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(232, 62, 140, 0.15);
}

.floating-hearts {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.heart {
    position: absolute;
    bottom: -30px;
    width: 18px;
    height: 18px;
    background: rgba(232, 62, 140, 0.22);
    transform: rotate(-45deg);
    animation: heartFloat linear infinite;
}

.heart::before,
.heart::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: inherit;
}

.heart::before {
    top: -9px;
    left: 0;
}

.heart::after {
    top: 0;
    left: 9px;
}

.heart:nth-child(1) { left: 7%; animation-duration: 13s; animation-delay: 0s; }
.heart:nth-child(2) { left: 15%; animation-duration: 16s; animation-delay: 2s; }
.heart:nth-child(3) { left: 23%; animation-duration: 11s; animation-delay: 1s; }
.heart:nth-child(4) { left: 34%; animation-duration: 14s; animation-delay: 3s; }
.heart:nth-child(5) { left: 46%; animation-duration: 17s; animation-delay: 1.5s; }
.heart:nth-child(6) { left: 58%; animation-duration: 12s; animation-delay: 0.8s; }
.heart:nth-child(7) { left: 68%; animation-duration: 15s; animation-delay: 2.5s; }
.heart:nth-child(8) { left: 77%; animation-duration: 18s; animation-delay: 0.4s; }
.heart:nth-child(9) { left: 88%; animation-duration: 14s; animation-delay: 1.8s; }
.heart:nth-child(10) { left: 95%; animation-duration: 12.5s; animation-delay: 3.2s; }

@keyframes heartFloat {
    0% {
        transform: translateY(0) rotate(-45deg) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 0.55;
    }
    85% {
        opacity: 0.35;
    }
    100% {
        transform: translateY(-120vh) rotate(-45deg) scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .thank-you-page {
        padding: 50px 16px 70px;
    }

    .thank-you-card {
        padding: 34px 20px;
        border-radius: 20px;
    }

    .thank-you-card h1 {
        font-size: 1.75rem;
    }

    .thank-you-subtitle,
    .thank-you-text {
        font-size: 0.95rem;
    }

    .whatsapp-btn,
    .thank-home-btn {
        width: 100%;
        max-width: 300px;
    }
}


/* ================= ORDER SUCCESS STATE ================= */

.thank-you-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff7fb 0%, #ffeef7 100%);
    padding: 10px;
}

.thank-you-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #ffd7e8;
    border-radius: 22px;
    box-shadow: 0 22px 48px rgba(232, 62, 140, 0.14);
    text-align: center;
    padding: 42px 34px;
    backdrop-filter: blur(4px);
}

.thank-you-badge {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ffe8f3;
    color: #e83e8c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 22px rgba(232, 62, 140, 0.18);
}

.thank-you-card h2 {
    margin: 0 0 12px;
    color: #0b1031;
    font-size: 2rem;
    font-weight: 600;
}

.thank-you-subtitle {
    margin: 0 0 10px;
    color: #333;
    font-size: 1rem;
    line-height: 1.75;
}

.thank-you-highlight {
    margin: 0 0 7px;
    color: #e83e8c;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.7;
}

.thank-you-note {
    margin: 0;
    color: #666;
    font-size: 0.93rem;
    line-height: 1.7;
}

.thank-you-order-id {
    margin: 18px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #f8c5dc;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 0.88rem;
    color: #555;
}

.thank-you-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.thank-you-whatsapp-btn,
.thank-you-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    padding: 13px 24px;
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thank-you-whatsapp-btn {
    color: #fff;
    background: linear-gradient(135deg, #27d76b 0%, #18a64e 100%);
    box-shadow: 0 11px 24px rgba(37, 211, 102, 0.3);
}

.thank-you-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 28px rgba(37, 211, 102, 0.38);
}

.thank-you-home-btn {
    background: #fff;
    color: #e83e8c;
    border: 1px solid #f5bfd8;
}

.thank-you-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.2);
}

.thank-you-hearts {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.thank-you-hearts span {
    position: absolute;
    bottom: -40px;
    color: rgba(236, 72, 153, 0.27);
    font-size: 24px;
    animation: floatHeart 10s linear infinite;
}

.thank-you-hearts span::before {
    content: "♥";
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.45;
    }
    100% {
        transform: translateY(-520px) scale(1.3) rotate(18deg);
        opacity: 0;
    }
}

.thank-you-hearts span:nth-child(1) {
    left: 8%;
    font-size: 18px;
    animation-duration: 8s;
    animation-delay: 0s;
}

.thank-you-hearts span:nth-child(2) {
    left: 22%;
    font-size: 28px;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.thank-you-hearts span:nth-child(3) {
    left: 48%;
    font-size: 20px;
    animation-duration: 9s;
    animation-delay: 0.8s;
}

.thank-you-hearts span:nth-child(4) {
    left: 68%;
    font-size: 34px;
    animation-duration: 12s;
    animation-delay: 2s;
}

.thank-you-hearts span:nth-child(5) {
    left: 82%;
    font-size: 22px;
    animation-duration: 10s;
    animation-delay: 1s;
}

.thank-you-hearts span:nth-child(6) {
    left: 93%;
    font-size: 16px;
    animation-duration: 13s;
    animation-delay: 3s;
}

@media (max-width: 768px) {
    .thank-you-wrapper {
        border-radius: 18px;
        padding: 8px;
    }

    .thank-you-card {
        padding: 32px 18px;
        border-radius: 16px;
    }

    .thank-you-card h2 {
        font-size: 1.65rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-whatsapp-btn,
    .thank-you-home-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ===== Responsive Polish Updates ===== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.hero-container,
.audio-card,
.composer-card,
.moments-container,
.testimonial-container,
.story-card,
.pricing-container,
.cta-container,
.footer-container,
.faq-container,
.contact-page-container {
    width: min(100%, 1280px);
    margin-left: auto;
    margin-right: auto;
}

.hero-button,
.cta-main-btn,
.plan-btn,
.btn,
.btn-contact,
.contact-email,
.contact-page-email {
    min-height: 44px;
}

@media (max-width: 1200px) {
    .header-container,
    .hero-container,
    .moments-container,
    .testimonial-container,
    .pricing-container,
    .cta-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .moments-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 2.7rem);
    }

    .hero-content {
        max-width: 560px;
    }
}

@media (max-width: 992px) {
    .main-header {
        padding: 14px 0;
    }

    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo-text {
        font-size: 14px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content,
    .audio-content,
    .story-before,
    .story-after {
        max-width: 100%;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .audio-card,
    .composer-card,
    .story-card,
    .cta-container {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .audio-card,
    .story-card {
        flex-direction: column;
        align-items: center;
    }

    .audio-image img {
        width: min(100%, 360px);
    }

    .composer-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .composer-nec-col {
        text-align: center;
    }

    .moments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .testimonial-slider {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .testimonial-card {
        flex: 1 1 320px;
        max-width: 420px;
    }

    .pricing-grid,
    .pricing-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .faq-item {
        padding: 16px 18px;
    }

    .faq-question {
        gap: 12px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-drawer {
        width: min(320px, 90vw);
        padding: 78px 18px 24px;
    }

    .mobile-nav-links {
        margin-top: 18px;
    }

    .mobile-nav-links a {
        font-size: 16px;
        padding: 12px 0;
    }

    .hero {
        padding: 28px 0 20px;
    }

    .hero h1,
    h1 {
        font-size: clamp(1.95rem, 8vw, 2.4rem);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .hero-button,
    .cta-main-btn,
    .plan-btn,
    .btn,
    .btn-contact,
    .contact-email,
    .contact-page-email {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .audio-title,
    .testimonial-title,
    .moments-title,
    .pricing-title,
    .contact-card h2,
    .faq-header h1,
    .contact-page-header h1 {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
        line-height: 1.3;
    }

    .audio-card,
    .composer-card,
    .story-card,
    .pricing-card,
    .pricing-card.premium,
    .pricing-card-premium,
    .contact-card,
    .contact-page-card,
    .faq-contact-box,
    .testimonial-card,
    .moment-card {
        border-radius: 18px;
    }

    .audio-player {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .audio-wave {
        width: min(46vw, 150px) !important;
    }

    .audio-time {
        min-width: 30px;
        font-size: 12px;
    }

    .audio-volume-controls {
        min-width: 86px;
        gap: 8px;
    }

    .moments-grid,
    .pricing-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .moment-card,
    .pricing-card,
    .testimonial-card {
        width: 100%;
    }

    .faq-answer {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .faq-contact-box,
    .faq-contact-info {
        flex-direction: column;
        text-align: center;
    }

    .main-footer {
        padding: 22px 0 28px;
    }

    .footer-copy {
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .header-container,
    .hero-container,
    .moments-container,
    .testimonial-container,
    .pricing-container,
    .cta-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .audio-card,
    .composer-card,
    .story-card,
    .testimonial-card,
    .pricing-card,
    .contact-card,
    .contact-page-card {
        padding: 20px 14px;
    }

    .plan-price,
    .price {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .plan-price-discount {
        gap: 6px;
    }

    .plan-price-discount .old-price {
        font-size: 1.2rem;
    }

    .plan-features li,
    .card-desc,
    .ts-text,
    .moment-card p,
    .composer-description,
    .faq-contact-text p,
    .contact-page-card p {
        font-size: 14px;
    }

    .story-card {
        height: auto !important;
        min-height: 0 !important;
    }

    .story-arrow {
        transform: rotate(90deg);
        margin: 6px auto;
    }
}

@media (max-width: 400px) {
    .logo {
        gap: 8px;
    }

    .logo-image img {
        height: 32px;
    }

    .logo-text {
        font-size: 12px;
    }

    .hero h1,
    h1 {
        font-size: 1.8rem;
    }

    .hero-description,
    .audio-quote,
    .faq-header p,
    .contact-page-header p {
        font-size: 14px;
    }

    .hero-button,
    .cta-main-btn,
    .plan-btn,
    .btn,
    .btn-contact,
    .contact-email,
    .contact-page-email,
    .thank-you-whatsapp-btn,
    .thank-you-home-btn {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 14px;
    }

    .audio-player {
        padding-left: 2px;
        padding-right: 2px;
    }

    .audio-wave {
        width: min(40vw, 120px) !important;
    }
}

/* ===== Mobile Edge Spacing Fix ===== */

@media (max-width: 768px) {
    *, *::before, *::after {
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden;
    }

    main,
    section,
    .header-container,
    .hero-container,
    .moments-container,
    .testimonial-container,
    .pricing-container,
    .cta-container,
    .footer-container,
    .faq-container,
    .about-container,
    .contact-page-container,
    .contact-card,
    .pricing-page,
    .faq-page,
    .about-page,
    .contact-page {
        padding-left: 18px;
        padding-right: 18px;
    }

    .audio-card,
    .composer-card,
    .story-card,
    .pricing-card,
    .pricing-card-premium,
    .testimonial-card,
    .moment-card,
    .faq-item,
    .faq-contact-box,
    .contact-page-card,
    .contact-card,
    .thank-you-card,
    .thank-you-wrapper,
    .order-summary-box,
    .review-box,
    form {
        max-width: 100%;
        box-sizing: border-box;
    }

    .audio-card,
    .composer-card,
    .story-card,
    .pricing-card,
    .pricing-card-premium,
    .testimonial-card,
    .faq-item,
    .faq-contact-box,
    .contact-page-card,
    .contact-card,
    .order-summary-box,
    .review-box,
    .thank-you-card {
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 400px) {
    main,
    section,
    .header-container,
    .hero-container,
    .moments-container,
    .testimonial-container,
    .pricing-container,
    .cta-container,
    .footer-container,
    .faq-container,
    .about-container,
    .contact-page-container,
    .contact-card,
    .pricing-page,
    .faq-page,
    .about-page,
    .contact-page {
        padding-left: 14px;
        padding-right: 14px;
    }
}
