/*
 * Dabet Theme Styles
 * Main CSS File
 */

/* Reset & 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: #e0e0e0;
    background-color: #0f0f1a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

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

/* Header */
.main-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: #ffd700;
    color: #1a1a2e;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-login, .btn-register {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-register:hover {
    background-color: #ffed4e;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    z-index: 1002;
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu a {
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    background-color: rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background-color: #ffd700;
    color: #1a1a2e;
}

.mobile-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-actions .btn-login,
.mobile-actions .btn-register {
    text-align: center;
}

/* Main Content */
#main-content {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

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

.hero-content h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
}

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

.btn-primary, .btn-secondary, .btn-cta {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary, .btn-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-header p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Section */
.brand-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.brand-content h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.brand-content h3:first-child {
    margin-top: 0;
}

.brand-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.achievement-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.achievement-card .year {
    display: inline-block;
    background-color: #ffd700;
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.advantage-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.advantage-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.product-card h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.cta-content h2 {
    color: #1a1a2e;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #333;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn-cta {
    background: #1a1a2e;
    color: #ffd700;
}

.cta-section .btn-cta:hover {
    background: #0f0f1a;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-item h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.hero-inner h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.hero-inner p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.step-card:hover {
    border-color: #ffd700;
}

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

.step-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background-color: rgba(255, 215, 0, 0.3);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    padding: 25px;
    flex: 1;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.timeline-content h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 5px;
}

.checkbox-label a {
    color: #ffd700;
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-password {
    color: #ffd700;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

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

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

.form-footer a:hover {
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.feature-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.tips-list {
    max-width: 900px;
    margin: 0 auto;
}

.tip-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.tip-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.tip-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.benefit-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.requirements-list {
    max-width: 900px;
    margin: 0 auto;
}

.requirement-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.requirement-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.promotions-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: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.promo-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.promo-card.featured {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.promo-card h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.promo-value {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-desc {
    color: #aaa;
    margin-bottom: 20px;
}

.btn-promo {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* How To Section */
.how-to-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.how-to-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.how-to-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

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

.term-block {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.term-block h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.comparison-table th {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 500;
}

/* Guide Categories */
.guide-categories {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.category-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.category-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.btn-category {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Guide Detail */
.guide-detail {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.guide-detail.alt-bg {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

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

.guide-block {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.guide-block h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.guide-block p {
    margin-bottom: 15px;
}

.guide-block p:last-child {
    margin-bottom: 0;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.method-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.method-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.method-note {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Support Features */
.support-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #0f0f1a;
}

/* Working Hours */
.working-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

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

.hours-block {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.hours-block h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Response Time */
.response-time {
    padding: 80px 0;
    background-color: #0f0f1a;
}

.time-table {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    overflow: hidden;
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.time-row:last-child {
    border-bottom: none;
}

.time-value {
    color: #ffd700;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3,
.footer-nav h3,
.footer-contact h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
    color: #aaa;
    line-height: 1.8;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: #aaa;
    transition: color 0.3s ease;
}

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

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

.copyright {
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-seo-text {
    color: #666;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    color: #ffd700;
    font-size: 2rem;
}

.page-body {
    color: #ccc;
    line-height: 1.8;
}

.page-body p {
    margin-bottom: 15px;
}

/* Archive Content */
.archive-content {
    padding: 60px 0;
}

.archive-content h1 {
    color: #ffd700;
    margin-bottom: 30px;
}

.archive-content article {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.archive-content h2 a {
    color: #ffd700;
}

.archive-content h2 a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary, .btn-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .advantages-grid,
    .products-grid,
    .promotions-grid,
    .categories-grid,
    .methods-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item::before {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 25px;
    }

    .btn-submit {
        font-size: 1rem;
    }
}

/* Image Styles */
.hero-image,
.brand-image,
.advantages-image,
.products-image,
.cta-image {
    margin: 30px auto;
    text-align: center;
    max-width: 800px;
}

.hero-image img,
.brand-image img,
.advantages-image img,
.products-image img,
.cta-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
}

.page-hero .hero-image {
    margin-top: 40px;
    max-width: 600px;
}

.page-hero .hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
