/*
Theme Name: FreePromts Theme
Theme URI: https://freepromts.com
Author: FreePromts
Author URI: https://freepromts.com
Description: Minimal, Elementor-friendly base theme for FreePromts project.
Version: 5.0
Text Domain: freepromts
*/

/* --- GLOBAL RESET & TYPOGRAPHY --- */
body { margin: 0; padding: 0; font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, Arial, sans-serif; background-color: #0a0a0a; color: #fff; line-height: 1.6; }
.fp-container { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
*, *::before, *::after { box-sizing: border-box; }

/* --- LAYOUT & SIDEBAR --- */
.fp-layout-wrapper { display: flex; flex-direction: column; gap: 30px; }
@media (min-width: 992px) {
    .fp-layout-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
    .fp-sidebar { display: block !important; position: sticky; top: 100px; max-height: 85vh; overflow-y: auto; padding-right: 10px; }
    .fp-mobile-filter-toggle { display: none !important; }
    .fp-sidebar::-webkit-scrollbar { width: 6px; background: #1a1a1a; }
    .fp-sidebar::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
}

/* --- SEARCH BAR & ICON FIX (CRITICAL) --- */
.fp-archive-search-box { position: relative; width: 100%; margin-bottom: 50px !important; }

/* Form Container */
.fp-hero-form { display: flex; align-items: center; background: #151515; border: 1px solid rgba(255,255,255,0.1); border-radius: 99px; padding: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s ease; height: 54px; }
.fp-hero-form:focus-within { border-color: #00e6d2; box-shadow: 0 0 0 4px rgba(0, 230, 210, 0.15); background: #1a1a1a; }

/* Select Dropdown in Hero */
.fp-hero-select-wrap { position: relative; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 10px; min-width: 160px; height: 100%; display: flex; align-items: center; }
.fp-hero-select { appearance: none; -webkit-appearance: none; background: transparent; border: none; color: #fff; font-size: 0.95rem; font-weight: 500; padding: 0 30px 0 20px; width: 100%; height: 100%; outline: none; cursor: pointer; }
.fp-hero-select option { background: #1a1a1a; color: #fff; padding: 10px; }

/* ICON SIZE LIMIT (Anti-Giant Icon) */
.fp-hero-select-icon, .fp-archive-search-icon { 
    position: absolute; pointer-events: none; color: #666; 
    width: 16px !important; height: 16px !important; display: block !important;
}
.fp-hero-select-icon { right: 10px; top: 50%; transform: translateY(-50%); }
.fp-archive-search-icon { left: 16px; top: 50%; transform: translateY(-50%); width: 20px !important; height: 20px !important; }

/* Search Input */
.fp-hero-input { width: 100%; height: 100%; background: transparent; border: none; padding: 0 14px; color: #fff; font-size: 1rem; outline: none; }

/* Search Button */
.fp-hero-btn { width: 42px; height: 42px; border-radius: 50%; background: #00e6d2; color: #000; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s; margin-left: auto; }
.fp-hero-btn svg { width: 20px; height: 20px; display: block; stroke-width: 2.5; }
.fp-hero-btn:hover { transform: scale(1.05); }

/* --- GRID SYSTEM (4 COLUMNS FIXED) --- */
.promt-grid { display: grid !important; gap: 20px; width: 100%; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 600px) { .promt-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 900px) { .promt-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 1200px) { .promt-grid { grid-template-columns: repeat(4, 1fr) !important; } }

/* --- CARD DESIGN --- */
.promt-card { position: relative; width: 100%; background: #0f0f0f; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.promt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: rgba(0, 230, 210, 0.3); }
.promt-card__thumb { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 3 / 4;
    overflow: hidden; 
    background: #1a1a1a;
    cursor: pointer; 
}

.promt-card__img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease; 
}
.promt-card:hover .promt-card__img { transform: scale(1.08); }
.promt-card__overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; justify-content: space-between; padding: 16px; z-index: 2; pointer-events: none; }
.promt-card:hover .promt-card__overlay { opacity: 1; }
.promt-card__overlay > div { pointer-events: auto; }
.fp-icon-btn { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #000; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.fp-icon-btn:hover { background: #00e6d2; transform: scale(1.1); }
.fp-icon-btn svg { width: 18px; height: 18px; fill: currentColor; }
.fp-icon-btn.is-liked { background: #fff0f0; color: #e63946; }
.fp-badge-top { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); color: #fff; padding: 4px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; z-index: 3; border: 1px solid rgba(255,255,255,0.1); pointer-events: none; }
.fp-badge-top.premium { background: #1f2937; color: #fff; }
.fp-badge-top.free { background: #00e6d2; color: #000; border-color: #00e6d2; }
.fp-badge-model { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); color: #00e6d2; padding: 4px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform:uppercase; z-index: 3; border: 1px solid rgba(0,230,210,0.3); pointer-events: none; }
.promt-card__body { padding: 14px; background: #0f0f0f; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.promt-card__title { margin: 0 0 6px 0; font-size: 0.95rem; font-weight: 600; line-height: 1.4; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.promt-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: #9ca3af; margin-top: 8px; }

/* --- SUBMIT & CONTACT FORM STYLES --- */
.fp-profile-form, .fp-contact-form-wrapper { background: #111; padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.fp-form-group { margin-bottom: 24px; position: relative; }
.fp-form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: #cbd5e1; }
.fp-input { width: 100%; padding: 14px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #fff; font-size: 1rem; outline: none; transition: 0.2s; box-sizing: border-box; }
.fp-input:focus { border-color: #00e6d2; background: #0f0f0f; }
.fp-input::placeholder { color: #555; }

/* Select Dropdown Fix (Submit & Contact) */
select.fp-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
select.fp-input option { background: #1a1a1a; color: #fff; padding: 10px; }

.fp-form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .fp-form-grid { grid-template-columns: 1fr 1fr; } }
.fp-btn-primary { background: #00e6d2; color: #000; border: none; padding: 14px 24px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.2s; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; width: 100%; }
.fp-btn-primary:hover { background: #fff; transform: translateY(-2px); }

/* Contact Page Specific */
.fp-contact-section { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: start; padding: 20px 0; }
@media (min-width: 992px) { .fp-contact-section { grid-template-columns: 1fr 1.5fr; } }
.fp-contact-info h2 { font-size: 2rem; margin-bottom: 16px; color: #fff; }
.fp-contact-info p { color: #9ca3af; margin-bottom: 40px; line-height: 1.6; }
.fp-info-card { display: flex; align-items: flex-start; gap: 20px; background: #111; border: 1px solid rgba(255,255,255,0.08); padding: 24px; border-radius: 16px; margin-bottom: 20px; transition: all 0.3s ease; }
.fp-info-card:hover { border-color: #00e6d2; transform: translateY(-4px); }
.fp-info-icon { width: 48px; height: 48px; background: rgba(0, 230, 210, 0.1); color: #00e6d2; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-info-icon svg { width: 24px; height: 24px; }
.fp-info-content h3 { margin: 0 0 6px 0; font-size: 1.1rem; color: #fff; }
.fp-info-content span { color: #9ca3af; font-size: 0.95rem; }
.fp-info-content a { color: #fff; text-decoration: none; transition: 0.2s; }
.fp-info-content a:hover { color: #00e6d2; }
.fp-alert { padding: 16px; border-radius: 8px; font-weight: 500; font-size: 0.95rem; margin-bottom: 20px; }
.fp-alert-success { background: rgba(0, 230, 210, 0.15); border: 1px solid rgba(0, 230, 210, 0.3); color: #00e6d2; }
.fp-alert-error { background: rgba(230, 57, 70, 0.15); border: 1px solid rgba(230, 57, 70, 0.3); color: #e63946; }

/* --- SINGLE PAGE COMMENTS & TAGS --- */
.fp-tags-section { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.fp-tags-wrapper { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.fp-tag-link { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 99px; color: #9ca3af; text-decoration: none; font-size: 0.85rem; transition: all 0.2s ease; }
.fp-tag-link:hover { background: rgba(0, 230, 210, 0.1); color: #00e6d2; border-color: #00e6d2; }
.fp-comments-area { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.fp-comments-title { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.fp-comment-list { list-style: none; padding: 0; margin: 0; }
.fp-comment-item { margin-bottom: 24px; }
.fp-comment-body { display: flex; gap: 16px; background: #111; border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; }
.fp-comment-avatar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
.fp-comment-content { flex: 1; }
.fp-comment-meta { margin-bottom: 8px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.fp-comment-author { font-weight: 700; color: #fff; font-size: 1rem; }
.fp-comment-date { color: #666; font-size: 0.8rem; }
.fp-comment-text { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; }
.fp-respond { margin-top: 40px; background: #151515; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; }
.fp-respond h3 { margin-top: 0; font-size: 1.2rem; color: #fff; margin-bottom: 16px; }
.fp-comment-form textarea { width: 100%; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 16px; color: #fff; font-family: inherit; font-size: 1rem; margin-bottom: 16px; min-height: 120px; outline: none; transition: 0.2s; box-sizing: border-box; }
.fp-comment-form textarea:focus { border-color: #00e6d2; background: #0f0f0f; }
.fp-submit-btn { background: #00e6d2; color: #000; border: none; padding: 12px 28px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.2s; text-transform: uppercase; font-size: 0.9rem; width: auto; }
.fp-submit-btn:hover { background: #fff; transform: translateY(-2px); }

/* --- OTHER COMPONENTS --- */
.fp-sidebar-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.fp-sidebar-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; display: block; }
.fp-checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.fp-checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; color: #9ca3af; font-size: 0.95rem; transition: color 0.2s; user-select: none; }
.fp-checkbox-label:hover { color: #fff; }
.fp-check-input, .fp-radio-input { appearance: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.2); background: transparent; cursor: pointer; flex-shrink: 0; }
.fp-check-input { border-radius: 4px; } .fp-radio-input { border-radius: 50%; }
.fp-check-input:checked { background: #00e6d2; border-color: #00e6d2; }
.fp-radio-input:checked { border-color: #00e6d2; background: #00e6d2; box-shadow: inset 0 0 0 3px #000; }
.fp-mobile-filter-toggle { width: 100%; padding: 12px; background: #1a1a1a; color: #fff; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
@media (max-width: 991px) { .fp-sidebar { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #0a0a0a; z-index: 9999; padding: 24px; overflow-y: auto; } .fp-sidebar.is-open { display: block; } .fp-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); } .fp-sidebar-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; } }
.fp-promt-var { color: #00e6d2; font-weight: 700; }
.fp-user-menu-component { display: flex; justify-content: flex-end; position: relative; z-index: 9999; }
.fp-user-dropdown-wrap { position: relative; display: flex; align-items: center; gap: 6px; cursor: pointer; padding: 4px; }
.fp-header-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); transition: border-color 0.2s; }
.fp-user-dropdown-wrap:hover .fp-header-avatar { border-color: #00e6d2; }
.fp-dropdown-caret { color: #666; transition: transform 0.2s; }
.fp-user-dropdown-wrap:hover .fp-dropdown-caret, .fp-user-dropdown-wrap.is-active .fp-dropdown-caret { transform: rotate(180deg); color: #fff; }
.fp-user-dropdown-menu { position: absolute; top: 100%; right: 0; margin-top: 12px; width: 240px; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1100; overflow: hidden; }
.fp-user-dropdown-wrap:hover .fp-user-dropdown-menu, .fp-user-dropdown-wrap.is-active .fp-user-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fp-dropdown-header { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.fp-dropdown-header strong { display: block; color: #fff; font-size: 0.95rem; }
.fp-dropdown-header span { display: block; color: #666; font-size: 0.8rem; margin-top: 2px; }
.fp-dropdown-list { list-style: none; margin: 0; padding: 8px; }
.fp-dropdown-list li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: #cbd5e1; text-decoration: none; font-size: 0.9rem; border-radius: 8px; transition: background 0.2s, color 0.2s; }
.fp-dropdown-list li a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.fp-dropdown-list li a svg { color: #666; transition: color 0.2s; }
.fp-dropdown-list li a:hover svg { color: #00e6d2; }
.fp-logout-item { margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 4px; }
.fp-logout-item a:hover { background: rgba(255, 50, 50, 0.1); color: #ff4d4d; }
.fp-logout-item a:hover svg { color: #ff4d4d; }
.fp-header-icon-circle { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.2s ease; }
.fp-user-dropdown-wrap:hover .fp-header-icon-circle { background: #00e6d2; color: #000; border-color: #00e6d2; }
.fp-login-dropdown-wide { width: 280px; padding: 20px; right: -10px !important; left: auto !important; }
.fp-mini-input { width: 100%; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1); padding: 10px; border-radius: 6px; color: #fff; font-size: 0.9rem; outline: none; box-sizing: border-box; }
.fp-mini-input:focus { border-color: #00e6d2; }
.fp-google-custom-wrap { margin-top: 10px; text-align: center; }
.fp-google-custom-wrap .nsl-button-google { background-color: #151515 !important; color: #fff !important; border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 99px !important; padding: 10px 20px !important; width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; transition: all 0.2s ease !important; }
.fp-google-custom-wrap .nsl-button-google:hover { background-color: #000 !important; border-color: #00e6d2 !important; }
.elementor-location-header, .elementor-section, .elementor-column, .elementor-widget-wrap { overflow: visible !important; }
@media (max-width: 768px) { .fp-login-dropdown-wide { position: fixed; top: 60px; left: 20px; right: 20px; width: auto; z-index: 9999; } }

/* =========================================
   WPFORMS DARK THEME ENTEGRASYONU
   ========================================= */
div.wpforms-container-full .wpforms-form { background: #111; padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); box-sizing: border-box; }
div.wpforms-container-full .wpforms-field-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: #cbd5e1; }
div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=number], div.wpforms-container-full textarea, div.wpforms-container-full select { width: 100%; background-color: #0a0a0a !important; border: 1px solid rgba(255,255,255,0.15) !important; border-radius: 8px !important; color: #fff !important; padding: 14px !important; font-size: 1rem !important; font-family: inherit; outline: none !important; box-sizing: border-box !important; transition: 0.2s ease; }
div.wpforms-container-full input:focus, div.wpforms-container-full textarea:focus, div.wpforms-container-full select:focus { border-color: #00e6d2 !important; background-color: #0f0f0f !important; box-shadow: none !important; }
div.wpforms-container-full ::placeholder { color: #555 !important; opacity: 1; }
div.wpforms-container-full button.wpforms-submit { background-color: #00e6d2 !important; color: #000 !important; border: none !important; padding: 14px 32px !important; border-radius: 8px !important; font-weight: 700 !important; font-size: 1rem !important; text-transform: uppercase; cursor: pointer !important; transition: all 0.2s ease !important; margin-top: 10px; width: 100%; }
div.wpforms-container-full button.wpforms-submit:hover { background-color: #fff !important; transform: translateY(-2px); }
div.wpforms-container-full .wpforms-error-container, div.wpforms-container-full label.wpforms-error { color: #e63946 !important; font-size: 0.85rem; }
div.wpforms-container-full input.wpforms-error { border-color: #e63946 !important; }
div.wpforms-confirmation-container-full { background: rgba(0, 230, 210, 0.15) !important; border: 1px solid rgba(0, 230, 210, 0.3) !important; color: #00e6d2 !important; border-radius: 8px; padding: 20px; }

/* --- VIDEO CARD STYLES --- */
.fp-video-indicator { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(0, 0, 0, 0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 5; pointer-events: none; backdrop-filter: blur(4px); transition: all 0.3s ease; border: 3px solid rgba(255, 255, 255, 0.8); }
.promt-card__thumb:hover .fp-video-indicator { transform: translate(-50%, -50%) scale(1.15); background: rgba(0, 230, 210, 0.9); border-color: #00e6d2; }
.fp-video-preview-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 6; background: #000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; border-radius: 16px 16px 0 0; overflow: hidden; }
.fp-video-preview-container.is-playing { opacity: 1; pointer-events: auto; }
.fp-video-preview-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.promt-card__thumb:hover .promt-card__img { opacity: 0.7; }
.fp-video-preview-container.is-playing ~ .promt-card__img { opacity: 0; }
.promt-card__thumb[data-video-id] .promt-card__overlay { z-index: 7; }

/* --- PAGINATION STYLES --- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 40px 0 20px 0; font-size: 0.95rem; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; background: #151515; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #9ca3af; text-decoration: none; font-weight: 500; transition: all 0.2s ease; }
.page-numbers:hover { background: #1a1a1a; border-color: #00e6d2; color: #00e6d2; transform: translateY(-2px); }
.page-numbers.current { background: #00e6d2; color: #000; border-color: #00e6d2; font-weight: 700; }
.page-numbers.dots { border: none; background: transparent; cursor: default; pointer-events: none; }
.page-numbers.prev, .page-numbers.next { font-size: 0; position: relative; }
.page-numbers.prev::before { content: "←"; font-size: 1.2rem; }
.page-numbers.next::before { content: "→"; font-size: 1.2rem; }

/* --- HERO SECTION REDESIGN (TRANSPARENT) --- */
.fp-hero-section { 
    position: relative; 
    min-height: 80vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 80px 20px; 
    overflow: hidden; 
    background: transparent;
}
.fp-hero-bg { 
    display: none;
}
.fp-hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.fp-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; margin: 0 0 20px 0; line-height: 1.2; letter-spacing: -0.02em; }
.fp-hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: #9ca3af; margin: 0 0 40px 0; line-height: 1.6; }
.fp-hero-search-wrapper { margin-bottom: 30px; }
.fp-hero-login-area { margin-top: 30px; }
.fp-hero-login-text { display: block; font-size: 0.9rem; color: #666; margin-bottom: 16px; }
.fp-google-btn-wrapper { max-width: 320px; margin: 0 auto; }
.fp-google-btn-wrapper .nsl-button-google { background: #151515 !important; border: 1px solid rgba(255,255,255,0.15) !important; border-radius: 99px !important; padding: 12px 24px !important; color: #fff !important; transition: all 0.3s ease !important; }
.fp-google-btn-wrapper .nsl-button-google:hover { background: #1a1a1a !important; border-color: #00e6d2 !important; transform: translateY(-2px); }
.fp-hero-welcome { margin-top: 30px; font-size: 1.1rem; color: #00e6d2; font-weight: 600; }
