:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #9c27b0;
    --accent: #f48fb1;
    --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d1b4e 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --shadow-glow: 0 10px 40px rgba(233, 30, 99, 0.3);
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Floating Flowers Animation */
.flowers-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-flower {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatDown 15s linear infinite;
}

@keyframes floatDown {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}



/* Header */
.header {
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 3.5rem;
    margin-bottom: 24px;
    background: rgba(233, 30, 99, 0.15);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.header h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 450px;
    margin: 0 auto;
}

/* Demo Link */
.demo-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.demo-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Form Card */
.form-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.form-card:hover {
    border-color: rgba(233, 30, 99, 0.25);
    box-shadow: 0 8px 40px rgba(233, 30, 99, 0.1);
}

.form-card h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #e91e63;
}

.form-card h2 i {
    font-size: 1.8rem;
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-group label small {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e91e63;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* File Upload */
.file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

.file-upload i {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 10px;
}

.file-upload p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.file-upload input {
    display: none;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Reason/Wish Items */
.reason-items,
.wish-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reason-item,
.wish-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reason-item input,
.wish-item input {
    flex: 1;
}

.reason-item button,
.wish-item button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reason-item button:hover,
.wish-item button:hover {
    background: #d63031;
}

.add-reason-btn,
.add-wish-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(233, 30, 99, 0.2);
    border: 1px dashed #e91e63;
    border-radius: 10px;
    color: #e91e63;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.add-reason-btn:hover,
.add-wish-btn:hover {
    background: rgba(233, 30, 99, 0.3);
}

/* Memory Upload */
.memory-uploads {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.memory-upload-item {
    aspect-ratio: 1;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.memory-upload-item:hover {
    border-color: #e91e63;
}

.memory-upload-item.has-image {
    border-style: solid;
}

.memory-upload-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memory-upload-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.memory-upload-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #e91e63;
}

.option-item label {
    cursor: pointer;
    margin: 0;
}

/* Customer Info Section */
.customer-info {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
}

/* Pricing */
.pricing-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.total {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e91e63;
    padding-top: 20px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.4);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer a {
    color: #e91e63;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 90px 15px 35px;
    }

    .header-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .form-card {
        padding: 24px;
        border-radius: 20px;
    }

    .form-card h2 {
        font-size: 1.2rem;
        gap: 12px;
    }

    .form-card h2 i {
        font-size: 1.4rem;
    }

    .container {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }

    .memory-uploads {
        grid-template-columns: repeat(2, 1fr);
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .pricing-summary {
        padding: 24px;
    }

    .submit-btn {
        padding: 18px;
        font-size: 1rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 85px 12px 30px;
    }

    .header-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .header h1 {
        font-size: 1.4rem;
    }

    .header p {
        font-size: 0.95rem;
    }

    .container {
        padding: 12px;
    }

    .form-card {
        padding: 20px;
        border-radius: 16px;
    }

    .navbar {
        padding: 12px 15px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .demo-link {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .pricing-row {
        font-size: 0.9rem;
    }

    .pricing-row.total {
        font-size: 1.15rem;
    }

    .reason-item button,
    .wish-item button {
        width: 36px;
        height: 36px;
    }

    .memory-upload-item {
        border-radius: 12px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 0.95rem;
    }
}

/* ===== GALERİ VE MÜZİK STİLLERİ ===== */

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.memory-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.memory-item:hover {
    border-color: #e91e63;
    transform: translateY(-2px);
}

.memory-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.memory-caption-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s;
}

.memory-caption-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.memory-caption-input:focus {
    border-color: #e91e63;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .memories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}