/*
 * Dabet Theme Stylesheet
 * Version: 1.0.0
 */

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header Styles - Structure B */
.gnb-wrap {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gnb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-list {
    display: flex;
    gap: 30px;
    color: #fff;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-link:hover {
    color: #ffd700;
}

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

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
}

.btn-login:hover {
    background: #ffd700;
    color: #1a1a2e;
}

.btn-register {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
}

.btn-register:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ffd700 100%);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-title span {
    color: #ffd700;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    padding: 15px 40px;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-secondary:hover {
    border-color: #ffd700;
    color: #ffd700;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #111;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 3px solid #ffd700;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a1a2e;
    font-weight: bold;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.cta-desc {
    font-size: 16px;
    color: rgba(26,26,46,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-dark {
    background: #1a1a2e;
    color: #ffd700;
    padding: 15px 40px;
    font-size: 16px;
}

.btn-dark:hover {
    background: #0f0f1a;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a2e;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
}

.faq-answer {
    padding: 0 25px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    color: #ffd700;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,215,0,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-seo {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-seo-text {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* Page Content */
.page-content {
    background: #0a0a0a;
    min-height: 500px;
    padding: 60px 0;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.page-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    background: #111;
    padding: 60px 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 40px 0 20px;
    text-transform: capitalize;
}

.content-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin: 30px 0 15px;
    text-transform: capitalize;
}

.content-block p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-block li {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

/* Forms */
.form-section {
    max-width: 500px;
    margin: 0 auto;
    background: #1a1a2e;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.form-footer a {
    color: #ffd700;
}

/* Promo Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.3);
}

.promo-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    padding: 20px;
    text-align: center;
}

.promo-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: capitalize;
}

.promo-body {
    padding: 25px;
}

.promo-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.promo-btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* Steps */
.steps-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-info {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav-primary {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a2e;
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav-primary.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .user-actions {
        order: 2;
    }
    
    .btn-register {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .steps-list {
        flex-direction: column;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .content-block h3 {
        font-size: 20px;
    }
}

/* Image Container Styles */
.img-container {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.img-container img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

.img-container-full {
    text-align: center;
    margin: 40px 0;
}

.img-container-full img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .form-section {
        padding: 25px;
    }
    
    .img-container,
    .img-container-full {
        margin: 25px auto;
    }
}
