/* ============================================
   HERO SECTION - QUICKCLIP DESIGN
   ============================================ */

.hero-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #ffb3b8 0%, #ff9aa0 40%, #ff7780 70%, #e65960 100%);
    background-image: url('/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Hero Navigation */
.hero-nav {
    position: relative;
    z-index: 10;
    padding: 1.5rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 2rem auto;
    /* margin-bottom: 2rem ; */
    max-width: 800px;
}

.hero-input-wrapper {
    max-width: 700px;
    width: 100%;
}

.hero-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.hero-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: white;
    color: #1e293b;
}

.hero-input::placeholder {
    color: #94a3b8;
}

.hero-btn {
    padding: 1rem 2.5rem;
    background: #fb1827;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.hero-btn:hover:not(:disabled) {
    background: var(--primary-dark);
}

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

.hero-terms {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

.hero-link {
    color: white;
    text-decoration: underline;
}

.hero-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-input-group {
        flex-direction: column;
        border-radius: 8px;
    }

    .hero-input {
        border-radius: 8px 8px 0 0;
    }

    .hero-btn {
        border-radius: 0 0 8px 8px;
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* ============================================
   UI SECTIONS FROM QUICKCLIP DESIGN
   ============================================ */

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    text-align: center;
}

.dark-mode .section-title {
    color: #f1f5f9;
}

.text-primary {
    color: var(--primary) !important;
}

/* Features Section - Enhanced Modern Design */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fffafb 0%, #fff5f7 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 119, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 154, 160, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dark-mode .features-section {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card {
    position: relative;
    padding: 2.5rem 1.75rem;
    border-radius: 16px;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(255, 119, 128, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7780, #ffb3b8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 119, 128, 0.05) 0%, rgba(255, 179, 184, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 119, 128, 0.2);
    border-color: rgba(255, 119, 128, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.dark-mode .feature-card {
    background: var(--bg-darker);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8eb 100%);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ffb3b8 0%, #ff9aa0 100%);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7780, #ffb3b8);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: brightness(1);
    transition: filter 0.4s ease;
}

.feature-card:hover .feature-icon img {
    filter: brightness(1.1) saturate(1.2);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: #1e293b;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #ff7780;
}

.dark-mode .feature-title {
    color: #f1f5f9;
}

.dark-mode .feature-card:hover .feature-title {
    color: #ffb3b8;
}

.feature-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.dark-mode .faq-section {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.dark-mode .faq-container {
    background: var(--bg-darker);
    border-color: var(--border-dark);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    text-align: left;
    transition: all 0.2s ease;
}

.dark-mode .faq-question {
    color: #f1f5f9;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    stroke: currentColor;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section - "Clip it, Save it, Quick it" */
.cta-section {
    padding: 2rem 0;
    background: #fffafb;
}

.dark-mode .cta-section {
    background: var(--bg-darker);
}

.cta-box {
    max-width: 1320px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffb3b8 0%, #ff9aa0 35%, #ff7780 70%, #e65960 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cta-title {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
        padding: 3rem 1.5rem;
    }
}

/* Enhanced Footer */
.footer-enhanced {
    padding: 3rem 0 2rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.dark-mode .footer-enhanced {
    background: var(--bg-dark);
    border-top-color: var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1320px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .footer-logo {
        margin: 0 auto 1rem;
    }
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.dark-mode .footer-heading {
    color: #f1f5f9;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-text {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}