:root {
    --primary-color: #e50914;
    /* A dynamic red like netflix/youtube for urgency */
    --secondary-color: #212121;
    --bg-color: #f7f9fc;
    --surface-color: #ffffff;
    --text-color: #333333;
    --text-light: #777777;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --gold: #f59e0b;
    --header-height: 50px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #e0e5ec;
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Application Container */
.app-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--surface-color);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-x: hidden;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    /* Increased from 50px */
    background: #111;
    color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-box {
    width: 90px;
    /* Increased from 60px */
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 1));
}

.marquee-box {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #111, #222);
    margin-left: 10px;
    /* Logodan uzaklaştırmak için eklendi */
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.marquee-content span {
    padding-right: 50px;
}

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

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

/* Media Stack */
.media-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 70px;
    /* Header yüksekliği ile aynı yapıldı */
}

.media-link {
    display: block;
    width: 100%;
    line-height: 0;
    /* Remove baseline gap */
}

.media-stack img,
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border: none;
}

.video-wrapper {
    width: 100%;
    background: #000;
    position: relative;
    padding-top: 125%;
    /* 4:5 aspect ratio typical for IG/FB ads */
    line-height: 0;
    margin: 0;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Videos Section */
.videos-section {
    padding: 35px 20px;
    background-color: #f8fafc; /* Farklılık yaratması için çok hafif gri */
    border-bottom: 1px solid var(--border-color);
}

/* Order Section */
.order-section {
    padding: 30px 20px;
    background-color: var(--surface-color);
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.required {
    color: var(--primary-color);
}

/* Package Selection - Redesigned */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-card {
    position: relative;
    border: 1px solid #e2e8f0; /* Thin gray border */
    border-radius: 16px; /* High rounding */
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

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

.pkg-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pkg-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-subtitle {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

/* Icons */
.star-icon {
    color: #f59e0b; /* Orange/Gold */
    font-size: 1.1rem;
}

.fire-icon {
    color: #ef4444; /* Red */
    font-size: 1.1rem;
}

.bolt-icon { color: #eab308; font-size: 1.1rem; }
.gem-icon { color: #3b82f6; font-size: 1.1rem; }
.heart-icon { color: #f43f5e; font-size: 1.1rem; }
.award-icon { color: #a855f7; font-size: 1.1rem; }
.thumbs-up-icon { color: #2563eb; font-size: 1.1rem; }
.rocket-icon { color: #10b981; font-size: 1.1rem; }
.crown-icon { color: #d97706; font-size: 1.1rem; }
.gift-icon { color: #ec4899; font-size: 1.1rem; }
.check-icon { color: #10b981; font-size: 1.1rem; }
.shield-halved-icon { color: #3b82f6; font-size: 1.1rem; }
.bell-icon { color: #fbbf24; font-size: 1.1rem; }
.cart-shopping-icon { color: #10b981; font-size: 1.1rem; }
.bag-shopping-icon { color: #ec4899; font-size: 1.1rem; }
.percent-icon { color: #ef4444; font-size: 1.1rem; }
.ticket-icon { color: #8b5cf6; font-size: 1.1rem; }
.circle-check-icon { color: #10b981; font-size: 1.1rem; }
.circle-info-icon { color: #3b82f6; font-size: 1.1rem; }

/* Check Mark */
.check-mark {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #10b981; /* Success Green */
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Badges */
.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ef4444; /* Red */
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

/* Selected State Styles */
.package-card input[type="radio"]:checked + .package-content + .check-mark {
    opacity: 1;
    transform: scale(1);
}

/* If there's a badge, we might want to hide it or place it next to checkmark when selected */
/* In screenshot, Item 2 is green, Item 3/4 are not selected but have badges. */
/* If a item WITH A BADGE IS selected, checkmark should show. We might need to adjust positioning */
.package-card input[type="radio"]:checked ~ .check-mark {
    opacity: 1;
    transform: scale(1);
}

/* When selected, hide the badge so checkmark takes place, OR place badge elsewhere */
/* In screenshot, selected item HAS NO BADGE. So it's fine. */
.package-card input[type="radio"]:checked ~ .discount-badge {
    display: none; /* Hide badge when selected to show checkmark, or position them both */
}

.package-card:has(input[type="radio"]:checked) {
    border-color: #10b981; /* Green Border */
    background-color: #f0fdf4; /* Very Light Green BG */
    border-width: 2px;
    padding: 17px 19px; /* Adjust padding due to border width increase to prevent jumping */
}

/* Popular (Pre-styled for backup if needed, but above handles the selection visually) */
/* If you want a specific card to have a colored border even when not selected, you could use classes */
/* But screenshot shows ONLY selected item is green. */

/* Inputs */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--secondary-color);
    background-color: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 80px;
    padding-top: 15px;
}

.input-wrapper i.fa-location-dot {
    top: 15px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

/* Payment Mode */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-card {
    position: relative;
    cursor: pointer;
}

.payment-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pay-content {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.2s;
    background-color: #fafafa;
}

.pay-content i {
    font-size: 1.2rem;
}

.payment-card input[type="radio"]:checked~.pay-content {
    border-color: var(--success-color);
    color: var(--success-color);
    background-color: rgba(16, 185, 129, 0.05);
}

/* Order Summary */
.order-summary-box {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
    font-weight: 800;
    font-size: 1.1rem;
}

.free-shipping {
    color: var(--success-color);
    font-weight: 700;
}

/* Trust Elements */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 10px 0;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #b0060e);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn i {
    animation: moveRight 1.5s infinite;
}

@keyframes moveRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Footer */
.app-footer {
    background: #f8fafc; /* Açık gri/mavi tonlu arka plan */
    color: var(--text-color);
    padding: 35px 20px 100px; /* Alttaki butonlar için alan */
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color); /* Tasarımdaki ana kırmızı/renk */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Grid Tasarımı */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.video-item {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.video-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.2rem; /* Başlıklar aynı hizada kalsın diye */
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    background: #000;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff; /* Beyaz kart */
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* Yumuşak gölge */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    width: 100%;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-item p {
    color: var(--text-color) !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.contact-item strong {
    color: var(--text-light);
    font-weight: 600;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #555555 !important;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white !important;
    border-color: transparent;
}

.social-ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-fb:hover { background: #1877F2; }
.social-tt:hover { background: #010101; }
.social-tw:hover { background: #000000; }

/* Links List */
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    margin: 20px auto 30px;
}

.footer-links-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    background: #fafafa;
    transform: translateX(3px);
    border-color: var(--primary-color);
}

.footer-links-list a i {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: transform 0.2s;
}

.footer-links-list a:hover i {
    color: var(--primary-color);
    transform: translateX(3px);
}

.app-footer .copyright {
    color: var(--text-light) !important;
    font-size: 0.75rem;
    margin-top: 20px;
}



/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    display: flex;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.contact-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 5px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.phone-btn {
    background-color: #111111;
}

.phone-btn:hover {
    background-color: #000000;
}

.wp-btn {
    background-color: #25D366;
}

.wp-btn:hover {
    background-color: #128C7E;
}

.contact-btn i {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (min-width: 501px) {
    body {
        display: flex;
        justify-content: center;
    }
}

/* Paket İçi Sarı Bilgi Kutusu */
.pkg-highlight {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    color: #92400e;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}
.pkg-highlight i {
    font-size: 0.95rem;
}