/* ===== PREMIUM PAGES DESIGN ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1540946485063-a40da27545f8?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LOGIN PAGE ===== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '⚓';
    position: absolute;
    font-size: 30rem;
    color: rgba(212, 175, 55, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 0;
}

.login-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.login-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.login-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.login-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--accent-gold);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.contact-item-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

/* ===== FAQ PAGE ===== */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .login-card,
    .contact-form-wrapper,
    .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .login-section {
        padding: 1rem;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* ===== PRIVACY & TERMS PAGES ===== */
.premium-page-wrapper {
    background: #f5f7fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.premium-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.page-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.page-meta {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.page-meta i {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.page-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.content-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e6ed;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.subsection {
    margin: 2rem 0;
    padding-left: 1rem;
}

.subsection h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    line-height: 1.6;
}

.check-list i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin: 2rem 0;
}

.contact-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-box-header i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.contact-box-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.contact-box-content p {
    margin: 1rem 0;
    line-height: 1.8;
}

.contact-box-content strong {
    color: var(--accent-gold);
}

.contact-box-content a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-box-content a:hover {
    opacity: 0.8;
}

.page-footer-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
}

.page-footer-note i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.page-footer-note p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-page-container {
        padding: 0 1rem;
    }
    
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
    
    .contact-box-header {
        flex-direction: column;
        text-align: center;
    }
}
