
/* ==========================================================================
   VARIABLES & RESET
   ========================================================================== */
:root {
    --p1: #fdf1f7;
    --p2: #eef6ff;
    --p3: #fff6e5;
    --accent: #ff7aa2;
    --dark: #2d2d2d;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text: #333333;
    --success: #4CAF50;
    --error: #f44336;
    --warning: #ff9800;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 20px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(120deg, var(--p1), var(--p2), var(--p3));
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   MODERN NAVIGATION
   ========================================================================== */

.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 122, 162, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.modern-nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2d2d2d, #ff7aa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.8rem;
    color: #ff7aa2;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Desktop Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link i {
    font-size: 1rem;
    color: #ff7aa2;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 122, 162, 0.1), rgba(255, 182, 201, 0.1));
    color: #ff7aa2;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 122, 162, 0.3);
}

.nav-link.active i {
    color: white;
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    border: 1px solid rgba(255, 122, 162, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item i {
    color: #ff7aa2;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 122, 162, 0.1), rgba(255, 182, 201, 0.1));
    color: #ff7aa2;
    padding-left: 25px;
}

/* Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search */
.search-container {
    position: relative;
}

.search-toggle {
    display: none;
    background: none;
    border: none;
    color: #2d2d2d;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.search-toggle:hover {
    background: rgba(255, 122, 162, 0.1);
    color: #ff7aa2;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 122, 162, 0.05);
    border: 2px solid rgba(255, 122, 162, 0.1);
    border-radius: 50px;
    padding: 5px;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: #ff7aa2;
    box-shadow: 0 0 0 3px rgba(255, 122, 162, 0.1);
}

.search-input {
    border: none;
    background: none;
    padding: 8px 15px;
    width: 200px;
    font-size: 0.9rem;
    color: #2d2d2d;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-submit {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 122, 162, 0.3);
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-action {
    position: relative;
    background: none;
    border: none;
    color: #2d2d2d;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-action:hover {
    background: rgba(255, 122, 162, 0.1);
    color: #ff7aa2;
    transform: translateY(-2px);
}

.action-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cart-action .action-badge {
    background: #2ed573;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background: #2d2d2d;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger .line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 122, 162, 0.1);
    flex-shrink: 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2d2d2d;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(255, 122, 162, 0.1);
    color: #ff7aa2;
}

/* Mobile Search */
.mobile-search {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 122, 162, 0.1);
    flex-shrink: 0;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 122, 162, 0.05);
    border: 2px solid rgba(255, 122, 162, 0.1);
    border-radius: 50px;
    padding: 5px;
    transition: var(--transition);
}

.search-wrapper:focus-within {
    border-color: #ff7aa2;
    box-shadow: 0 0 0 3px rgba(255, 122, 162, 0.1);
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #2d2d2d;
    outline: none;
}

.mobile-search-input::placeholder {
    color: #999;
}

.mobile-search-btn {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-btn:hover {
    transform: scale(1.05);
}

/* Mobile Navigation Content */
.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Section Title */
.mobile-nav-section {
    padding: 20px 20px 10px;
    border-bottom: 1px solid rgba(255, 122, 162, 0.1);
    margin-bottom: 10px;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff7aa2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Nav Items */
.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 122, 162, 0.05);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-nav-link i {
    color: #ff7aa2;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-text {
    flex: 1;
}

.mobile-nav-link:hover {
    background: rgba(255, 122, 162, 0.05);
    color: #ff7aa2;
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(255, 122, 162, 0.1), rgba(255, 182, 201, 0.1));
    color: #ff7aa2;
    border-left: 3px solid #ff7aa2;
}

/* Mobile Badge */
.mobile-badge {
    background: #ff7aa2;
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 122, 162, 0.1);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.dropdown-header i:first-child {
    color: #ff7aa2;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.dropdown-arrow {
    margin-left: auto;
    font-size: 0.9rem;
    color: #999;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown.active .dropdown-header {
    background: rgba(255, 122, 162, 0.05);
    color: #ff7aa2;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 122, 162, 0.03);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px 12px 55px;
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 122, 162, 0.05);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item i {
    color: #ff7aa2;
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.mobile-dropdown-item:hover {
    background: rgba(255, 122, 162, 0.1);
    color: #ff7aa2;
    padding-left: 60px;
}

/* Mobile Footer */
.mobile-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 122, 162, 0.1);
    flex-shrink: 0;
}

.theme-switch {
    margin-bottom: 20px;
}

.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 122, 162, 0.1);
    border: 2px solid rgba(255, 122, 162, 0.2);
    border-radius: 50px;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.theme-btn:hover {
    background: rgba(255, 122, 162, 0.2);
    transform: translateY(-2px);
}

.theme-btn i {
    color: #ff7aa2;
}

.social-links {
    text-align: center;
}

.social-title {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 122, 162, 0.1);
    color: #2d2d2d;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION WITH SLIDER
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.85));
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 50px;
    color: #2d2d2d;
    z-index: 2;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.slide-text {
    font-size: 1.2rem;
    color: #555;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2d2d2d;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-control:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 90%;
    max-width: 800px;
}

.hero-box {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2d2d2d;
    border: 2px solid #ff7aa2;
}

.btn-outline {
    background: transparent;
    color: #ff7aa2;
    border: 2px solid #ff7aa2;
}

.btn-white {
    background: white;
    color: #2d2d2d;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 122, 162, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff7aa2;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff7aa2;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff7aa2;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.card-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.card-features li i {
    color: #ff7aa2;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff7aa2;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 15px;
}

/* ==========================================================================
   PARALLAX
   ========================================================================== */
.parallax {
    height: 70vh;
    background-image: url("https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 100px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.parallax-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.parallax-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.parallax-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ==========================================================================
   FIRSATLAR
   ========================================================================== */
.deals-section {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    margin: 50px auto;
    padding: 80px 5%;
    max-width: 1400px;
}

.countdown {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.countdown-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff7aa2;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    min-width: 90px;
    box-shadow: 0 8px 25px rgba(255, 122, 162, 0.2);
}

.countdown-label {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.deal-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.deal-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 2;
}

.deal-image {
    height: 220px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.05);
}

.deal-content {
    padding: 25px;
}

.deal-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.new-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff7aa2;
}

.deal-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.deal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.deal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 162, 0.3);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content i.fa-quote-left {
    font-size: 2.5rem;
    color: rgba(255, 122, 162, 0.2);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff7aa2;
}

.author-info h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #2d2d2d;
}

.author-role {
    color: #ff7aa2;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-section {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    margin: 50px auto;
    padding: 80px 5%;
    max-width: 1400px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 122, 162, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.honeypot-field {
    opacity: 0;
    position: absolute;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-submit {
    padding: 18px 50px;
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 122, 162, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-spinner {
    display: none;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-notice {
    color: #777;
    font-size: 0.9rem;
}

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.form-message {
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 2px solid #f44336;
}

.contact-info {
    display: flex;
    align-items: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
    width: 100%;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 122, 162, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: #ff7aa2;
}

.info-content {
    display: inline-block;
}

.info-content h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-content p {
    color: #555;
    line-height: 1.6;
}

.info-content a {
    color: #ff7aa2;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-links h4 {
    color: var(--accent);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 122, 162, 0.1);
    color: #2d2d2d;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    padding: 80px 10% 40px;
    background: rgba(255, 255, 255, 0.6);
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-description {
    color: #666;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #2d2d2d;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff7aa2;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ff7aa2;
    transform: translateX(5px);
}

.newsletter-form {
    margin-top: 25px;
}

.newsletter-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 122, 162, 0.1);
    border-radius: 50px;
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-input input:focus {
    border-color: #ff7aa2;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 122, 162, 0.3);
}

.newsletter-note {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 122, 162, 0.1);
}

.footer-copyright {
    color: #666;
    font-size: 0.95rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-text {
    color: #666;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 1.8rem;
    color: #666;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 122, 162, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
}

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

@media (max-width: 1200px) {
    .nav-container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .search-toggle {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-box {
        padding: 40px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .parallax-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper,
    .info-card {
        padding: 30px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .slide-content {
        left: 20px;
        bottom: 80px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-box {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 70px;
        padding: 12px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text {
        display: none;
    }
    
    .user-action span {
        display: none;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* ==========================================================================
   CAPTCHA STYLES - GÜNCELLENDİ
   ========================================================================== */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

#captcha-question {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    min-width: 120px; /* Minimum genişlik arttırıldı */
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 122, 162, 0.2);
    transition: var(--transition);
    display: inline-block;
    word-break: keep-all;
    white-space: nowrap;
    flex-shrink: 0; /* Küçülmesini engelle */
}

#captcha-question:hover {
    transform: scale(1.02);
}

#captcha {
    flex: 1;
    min-width: 120px; /* Minimum genişlik eklendi */
    max-width: 200px; /* Maksimum genişlik sınırlandı */
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 15px;
    transition: var(--transition);
}

#captcha:focus {
    border-color: #ff7aa2;
    box-shadow: 0 0 0 3px rgba(255, 122, 162, 0.1);
}

#captcha::-webkit-inner-spin-button,
#captcha::-webkit-outer-spin-button {
    opacity: 1;
    height: 30px;
}

.refresh-captcha {
    background: rgba(255, 122, 162, 0.1);
    border: 2px solid rgba(255, 122, 162, 0.2);
    color: #ff7aa2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0; /* Küçülmesini engelle */
}

.refresh-captcha:hover {
    background: rgba(255, 122, 162, 0.2);
    transform: rotate(180deg);
}

.captcha-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(255, 122, 162, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}

.captcha-info i {
    color: #ff7aa2;
}

/* Responsive CAPTCHA */
@media (max-width: 576px) {
    .captcha-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    #captcha-question {
        min-width: 100%;
        padding: 10px 15px;
        font-size: 1.1rem;
    }
    
    #captcha {
        min-width: 100%;
        max-width: 100%;
    }
    
    .refresh-captcha {
        align-self: center;
        margin-top: 5px;
    }
}

/* Dark mode için */
body.dark-mode #captcha-question {
    background: linear-gradient(135deg, #ff7aa2, #ffb6c9);
    color: white;
}

body.dark-mode .captcha-info {
    background: rgba(255, 122, 162, 0.1);
    color: #e0e0e0;
}

body.dark-mode .refresh-captcha {
    background: rgba(255, 122, 162, 0.2);
    border-color: rgba(255, 122, 162, 0.3);
    color: #ffb6c9;
}

/* CAPTCHA animasyonu */
@keyframes fadeInCaptcha {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

#captcha-question {
    animation: fadeInCaptcha 0.3s ease;
}



/* ==========================================================================
   DARK MODE
   ========================================================================== */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .modern-nav {
    background: rgba(45, 45, 45, 0.95);
    border-bottom: 1px solid rgba(255, 122, 162, 0.2);
}

body.dark-mode .modern-nav.scrolled {
    background: rgba(45, 45, 45, 0.98);
}

body.dark-mode .nav-link {
    color: #e0e0e0;
}

body.dark-mode .nav-link:hover {
    background: rgba(255, 122, 162, 0.2);
}

body.dark-mode .dropdown-menu {
    background: #2d2d2d;
    border: 1px solid rgba(255, 122, 162, 0.2);
}

body.dark-mode .dropdown-item {
    color: #e0e0e0;
}

body.dark-mode .search-box {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .search-input {
    color: #e0e0e0;
}

body.dark-mode .search-input::placeholder {
    color: #aaa;
}

body.dark-mode .user-action {
    color: #e0e0e0;
}

body.dark-mode .hamburger .line {
    background: #e0e0e0;
}

body.dark-mode .mobile-menu {
    background: #2d2d2d;
}

body.dark-mode .mobile-logo {
    color: #e0e0e0;
}

body.dark-mode .mobile-nav-link {
    color: #e0e0e0;
}

body.dark-mode .mobile-search-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}

body.dark-mode .card,
body.dark-mode .contact-form-wrapper,
body.dark-mode .info-card,
body.dark-mode .testimonial,
body.dark-mode .countdown {
    background: rgba(45, 45, 45, 0.7);
    color: #e0e0e0;
}

body.dark-mode .card-title,
body.dark-mode .deal-title,
body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .slide-content {
    color: #ffffff;
}

body.dark-mode .slide-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

body.dark-mode .parallax-overlay {
    background: rgba(0, 0, 0, 0.4);
}

body.dark-mode .parallax-content {
    background: rgba(45, 45, 45, 0.8);
    color: #ffffff;
}

body.dark-mode .site-footer {
    background: rgba(45, 45, 45, 0.8);
}