/* Support Page Specific Styles */

/* Hero Section */
.support-hero {
    padding: 80px 0 60px;
    background: transparent;
    position: relative;
}


.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.mobile-break {
    display: none;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: #2E4034;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    margin: 0 auto;
    max-width: 700px;
}

.search-box-wrapper {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(139, 195, 74, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-box-wrapper:hover {
    box-shadow: 0 6px 30px rgba(139, 195, 74, 0.25);
    border-color: rgba(102, 187, 106, 0.4);
}

.search-input-group {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 8px;
}

.search-icon {
    position: absolute;
    left: 20px;
    pointer-events: none;
}

.search-input {
    flex: 1;
    padding: 16px 60px 16px 56px;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    border: none;
    outline: none;
    background: transparent;
    color: #2E4034;
    -webkit-appearance: none;
}

/* Hide default search clear button */
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* Custom clear button */
.search-clear {
    background: transparent;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    display: none;
    color: #8E9E91;
    transition: all 0.2s ease;
    margin-right: 8px;
}

.search-clear:hover {
    color: #66BB6A;
}

.search-clear svg {
    width: 18px;
    height: 18px;
}

.search-input::placeholder {
    color: #A1887F;
    opacity: 0.7;
}

.search-btn {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    transform: translateX(2px);
}

.search-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #8E9E91;
    margin-right: 10px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.keyboard-shortcut {
    background: rgba(245, 249, 245, 0.9);
    border: 1px solid rgba(232, 245, 233, 1);
    border-radius: 5px;
    padding: 3px 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Mono', monospace;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #8E9E91;
    font-weight: 500;
}

.cmd-icon {
    width: 11px;
    height: 11px;
    opacity: 0.8;
}

.hint-text {
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Popular Topics */
.popular-topics {
    text-align: center;
    margin-top: 1.5rem;
}

.topics-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E4034;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 100%;
}

.topic-tag {
    background: white;
    border: 2px solid #E8F5E9;
    border-radius: 24px;
    padding: 10px 18px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #2E4034;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.topic-tag svg {
    width: 16px;
    height: 16px;
    stroke: #66BB6A;
    transition: all 0.3s ease;
}

.topic-tag:hover {
    background: linear-gradient(135deg, #E8F5E9 0%, #C5E99B 100%);
    border-color: #66BB6A;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 187, 106, 0.25);
}

.topic-tag:hover svg {
    stroke: #4CAF50;
    transform: scale(1.1);
}

/* Quick Access Cards */
.quick-access {
    padding: 60px 0;
    background: transparent;
    position: relative;
}


.quick-access h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.access-card {
    background: #FFFFFF;
    border: 1px solid rgba(139, 195, 74, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(139, 195, 74, 0.08);
    background-clip: padding-box;
}


.access-card:hover {
    border-color: rgba(139, 195, 74, 0.3);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    background: #FFFFFF;
    text-decoration: none !important;
    transform: translateY(-5px);
}


.card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: white;
    border: 2px solid #E8F5E9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.access-card:hover .card-icon {
    background: white;
    border-color: #E8F5E9;
}

.card-icon svg {
    stroke: #4CAF50;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
}

.access-card:hover .card-icon svg {
    stroke: #2E7D32;
}

.access-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    transition: none;
    position: relative;
    display: inline-block;
}

.access-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #66BB6A;
    transition: width 0.3s ease;
}

.access-card:hover h3 {
    color: #000000;
}

.access-card:hover h3::after {
    width: 100%;
}

.access-card p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2E4034;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #E8F5E9;
    border-radius: 50%;
    color: #66BB6A;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.access-card:hover .card-arrow {
    background: #66BB6A;
    color: white;
    transform: translateX(2px);
}

/* FAQ Section */
.faq-main {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 2px;
}

.faq-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 2rem;
}

.expand-all,
.category-filter {
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.expand-all {
    background: white;
    border: 2px solid #66BB6A;
    color: #4CAF50;
    cursor: pointer;
}

.expand-all:hover {
    background: #66BB6A;
    border-color: #66BB6A;
    color: white;
    transform: translateY(-1px);
}

.category-filter {
    background: white;
    border: 1px solid #E8F5E9;
    color: #2E4034;
    outline: none;
    cursor: pointer;
}

.category-filter:hover,
.category-filter:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* FAQ Categories */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    background: #FFFFFF;
    border: 1px solid rgba(139, 195, 74, 0.1);
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(139, 195, 74, 0.05);
    transition: all 0.3s ease;
}

.faq-category:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(139, 195, 74, 0.08);
    border-color: rgba(139, 195, 74, 0.18);
    transform: translateY(-2px);
}

.faq-category:hover .category-icon {
    background: #F5FDF5;
    border-color: #8BC34A;
}

.faq-category:hover .category-icon svg {
    stroke: #66BB6A;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E8F5E9;
}

.category-icon {
    width: 52px;
    height: 52px;
    background: white;
    border: 2px solid #E8F5E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #A5D6A7;
}

.category-icon svg {
    stroke: #A5D6A7;
    width: 24px;
    height: 24px;
    display: block;
}

.faq-category h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 52px;
    height: 52px;
    display: flex;
    align-items: center;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid rgba(139, 195, 74, 0.08);
    padding: 18px 12px;
    margin: 0 -12px 14px -12px;
    transition: background-color 0.2s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background-color: rgba(241, 248, 233, 0.3);
}

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

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.faq-toggle span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2E4034;
    flex: 1;
    padding-right: 16px;
    transition: color 0.2s ease;
}

.faq-toggle:hover span {
    color: #388E3C;
}

.toggle-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease, opacity 0.3s ease;
    stroke: #66BB6A;
    opacity: 0.7;
    flex-shrink: 0;
}

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

.faq-content {
    padding-top: 16px;
    padding-left: 8px;
    padding-right: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    opacity: 1;
    padding-left: 12px;
    padding-right: 12px;
}

.faq-content p,
.faq-content li {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #455A64; /* Lighter text color */
    margin-bottom: 1rem;
}

.faq-content ul,
.faq-content ol {
    margin-left: 24px;
    margin-bottom: 1rem;
}

.faq-content li {
    margin-bottom: 8px;
}

/* Comparison Table */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.plan-column {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #E8F5E9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.plan-column:hover {
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.15);
    border-color: #66BB6A;
    transform: translateY(-2px);
}

.plan-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 12px;
}

.plan-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-column li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.plan-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #66BB6A;
    font-weight: bold;
}

/* Photo Tips Grid */
.photo-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.tip-card {
    background: white;
    border: 1px solid #E8F5E9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: linear-gradient(135deg, #F8FFF8 0%, #E8F5E9 100%);
    border-color: #66BB6A;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.2);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.tip-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2E4034;
    margin-bottom: 4px;
}

.tip-card p {
    font-family: 'Lora', serif;
    font-size: 0.875rem;
    color: #2E4034;
}

/* Premium Contact Section */
.contact-support-premium {
    padding: 80px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-support-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: #5A6C5D;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.contact-method {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 195, 74, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 195, 74, 0.15);
    border-color: rgba(139, 195, 74, 0.3);
}

.contact-method.featured {
    border: 2px solid rgba(102, 187, 106, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FDF8 100%);
    margin-top: 12px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(102, 187, 106, 0.3);
}

.method-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #A8D5A8;
    border-radius: 16px;
    color: #81C784;
    position: relative;
    transition: all 0.3s ease;
}

.method-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #66BB6A 0%, #8BC34A 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-method:hover .method-icon {
    color: #66BB6A;
    border-color: #66BB6A;
    background: #F8FDF8;
    transform: scale(1.05);
}

.contact-method:hover .method-icon::before {
    opacity: 0.1;
}

.method-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.contact-method h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}

.contact-method p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #5A6C5D;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.response-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #7A8F7D;
    font-size: 0.9rem;
}

.premium-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-contact-btn.primary {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
}

.premium-contact-btn.primary:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    transform: translateX(2px);
}

.premium-contact-btn.secondary {
    background: white;
    color: #66BB6A;
    border: 2px solid #66BB6A;
}

.premium-contact-btn.secondary:hover {
    background: #E8F5E9;
    border-color: #4CAF50;
}

.premium-contact-btn.tertiary {
    background: #F5F5F5;
    color: #5A6C5D;
    border: 1px solid #E0E0E0;
}

.premium-contact-btn.tertiary:hover {
    background: #EEEEEE;
    border-color: #BDBDBD;
}

.support-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.1);
}

.metric-icon {
    flex-shrink: 0;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #7A8F7D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-section {
        padding: 0 20px;
    }
    
    .search-hint {
        margin-right: 8px;
    }
    
    .search-input {
        padding-right: 20px;
    }
    
    .topic-tags {
        gap: 8px;
    }
    
    .topic-tag {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .photo-tips {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
    
    .topic-tags {
        gap: 6px;
    }
    
    .topic-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .topic-tag svg {
        width: 14px;
        height: 14px;
    }
    
    .search-hint {
        display: none;
    }
    
    .search-input {
        padding: 14px 100px 14px 50px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 10px 16px;
        margin-right: 6px;
    }
    
    .search-clear {
        right: 60px;
    }
    
    .search-input-group {
        padding-right: 6px;
    }
}

@media (max-width: 400px) {
    .search-box-wrapper {
        padding: 8px;
    }
    
    .search-input-group {
        position: relative;
        display: flex;
        align-items: center;
        padding-right: 0;
    }
    
    .search-input {
        padding: 12px 85px 12px 40px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .search-btn {
        position: absolute;
        right: 8px;
        padding: 8px;
        margin-right: 0;
        min-width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .search-clear {
        position: absolute;
        right: 52px;
        width: 28px;
        height: 28px;
        padding: 4px;
    }
    
    .search-icon {
        left: 10px;
        width: 20px;
        height: 20px;
    }
    
    .card-arrow {
        margin: 0 auto;
        display: flex;
    }
    
    .access-card {
        text-align: center;
    }
    
    .access-card h3 {
        text-align: center;
    }
    
    .access-card p {
        text-align: center;
    }
}