/* ========== MOMENT ORGANİZASYON - Custom Styles ========== */

:root {
    --mor: #7c3aed;
    --mor-dark: #6d28d9;
    --mor-light: #8b5cf6;
    --pembe: #ec4899;
    --pembe-dark: #db2777;
    --krem: #faf5ff;
    --altin: #d4a853;
    --altin-light: #e0bc6e;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #1f2937;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

table {
    max-width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.font-script { font-family: 'Great Vibes', cursive; }

/* ---- Navbar ---- */
.navbar {
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 4px 30px rgba(124,58,237,0.10);
}
.nav-link {
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pembe);
    transition: all 0.3s;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* ---- Hero ---- */
.hero-section {
    background: linear-gradient(135deg, rgba(124,58,237,0.92), rgba(236,72,153,0.85)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float-up linear infinite;
}
@keyframes float-up {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(124,58,237,0.35);
}
.btn-outline-gradient {
    border: 2px solid var(--altin);
    color: var(--altin);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}
.btn-outline-gradient:hover {
    background: var(--altin);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Cards ---- */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid #f3e8ff;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mor), var(--pembe));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}
.service-card .icon-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--mor);
    transition: all 0.3s;
}
.service-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* ---- Gallery ---- */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(124,58,237,0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- Filter Buttons ---- */
.filter-btn {
    padding: 10px 28px;
    border-radius: 50px;
    border: 2px solid #e9d5ff;
    background: transparent;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    color: #fff;
    border-color: transparent;
}

/* ---- Pricing ---- */
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 36px;
    border: 1px solid #f3e8ff;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.pricing-card.featured {
    border: 2px solid var(--altin);
    transform: scale(1.05);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(124,58,237,0.18);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}
.pricing-badge {
    position: absolute;
    top: 20px; right: -35px;
    background: linear-gradient(135deg, var(--altin), var(--altin-light));
    color: #fff;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.price-tag {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Stats ---- */
.stat-card {
    text-align: center;
    padding: 32px 16px;
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #f3e8ff;
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 15px 50px rgba(124,58,237,0.12);
    transform: translateY(-5px);
}
.testimonial-stars { color: var(--altin); }

/* ---- Section Title ---- */
.section-title {
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--mor), var(--pembe));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ---- Timeline ---- */
.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px; top: 30px; bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--mor), var(--pembe));
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
    position: absolute;
    left: 0; top: 6px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mor), var(--pembe));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 10px;
}

/* ---- Contact Form ---- */
.contact-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e9d5ff;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
    background: #faf5ff;
}
.contact-input:focus {
    border-color: var(--mor);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
    background: #fff;
}

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, rgba(124,58,237,0.92), rgba(236,72,153,0.85)),
                url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover no-repeat;
    padding: 160px 0 80px;
    text-align: center;
    color: #fff;
}

/* ---- Footer ---- */
.footer {
    background: linear-gradient(135deg, #1e1030, #2d1654);
}
.footer a { color: #c4b5fd; transition: color 0.3s; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,181,253,0.3), transparent);
}

/* ---- Animations ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--krem); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--mor), var(--pembe));
    border-radius: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero-section { min-height: 80vh; }
    .stat-number { font-size: 36px; }
    .price-tag { font-size: 36px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}

/* Mobile nav */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--mor); }

/* Placeholder images */
.placeholder-img {
    background: linear-gradient(135deg, #e9d5ff, #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mor);
    font-size: 48px;
    width: 100%;
    height: 100%;
    min-height: 200px;
}
