/* ==================== STYLES2.CSS ==================== */
/* Pages using this file:
   - about.html
   - services.html (category section only)
   - privacy.html
   - terms.html
*/

/* ==================== TABLE OF CONTENTS ==================== */
/* 1. ABOUT PAGE STYLES
      1.1 About Hero Section
      1.2 About Intro Section
      1.3 Mission Section
      1.4 CTA Section
      1.5 About Responsive
/* 2. SERVICES PAGE - CATEGORY SECTION
      2.1 Category Grid
      2.2 Category Cards
      2.3 Card Textures
      2.4 Category Responsive
/* 3. LEGAL PAGES STYLES (Privacy & Terms)
      3.1 Legal Page Layout
      3.2 Legal Hero
      3.3 Legal Content Wrapper
      3.4 Legal Typography
      3.5 Legal Buttons
      3.6 Legal Responsive
*/

/* ==================== 1. ABOUT PAGE STYLES ==================== */

/* 1.1 About Hero Section */
.about-hero {
    padding-top: 150px !important;
    padding-bottom: 40px !important;
    background-color: #08081a;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 247, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 247, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* 1.2 About Intro Section */
.about-intro {
    padding: var(--section-padding) 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 247, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    line-height: 1.3;
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.about-text p:last-of-type {
    margin-bottom: 30px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}


/* About Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
}

@media (max-width: 768px) {
    section.about-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
    }
    
}



/* ==================== 2. SERVICES PAGE - CATEGORY SECTION ==================== */

/* 2.1 Category Grid */
.services-category {
    padding: 80px 0;
    background: #050508;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.services-category:last-child {
    border-bottom: none;
}

.services-niche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

/* 2.2 Category Cards */
.service-niche-card {
    position: relative;
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-niche-card:hover {
    border-color: rgba(0, 247, 255, 0.4);
    transform: translateY(-5px);
    background: rgba(10, 10, 26, 0.85);
}

.service-niche-card > * {
    position: relative;
    z-index: 1;
}

/* 2.3 Card Textures */
.service-niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 247, 255, 0.02) 2px,
            rgba(0, 247, 255, 0.02) 6px
        ),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 4px,
            rgba(255, 255, 255, 0.01) 4px,
            rgba(255, 255, 255, 0.01) 8px
        );
    pointer-events: none;
    z-index: 0;
}

.service-niche-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

.service-niche-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-niche-icon i {
    font-size: 22px;
    color: #00f7ff;
}

.service-niche-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.service-niche-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.service-niche-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00f7ff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: gap 0.3s ease;
}

.service-niche-btn:hover {
    gap: 12px;
    color: #00f7ff;
}

/* 2.4 Category Responsive */
@media (max-width: 1200px) {
    .services-niche-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services-niche-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-category {
        padding: 60px 0;
    }
    
    .services-niche-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .service-niche-card {
        padding: 28px 20px;
    }
}


/* ==================== 3. LEGAL PAGES STYLES (Privacy & Terms) ==================== */

/* 3.1 Legal Page Layout */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background-color: #050508;
    position: relative;
    overflow-x: hidden;
}

.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 247, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* 3.2 Legal Hero */
.legal-hero {
    text-align: center;
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.legal-hero h1 span {
    color: #00f7ff;
    position: relative;
}

.legal-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 247, 255, 0.2);
    z-index: -1;
}

.legal-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f7ff;
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
    display: inline-block;
}

.legal-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #00f7ff;
}

.legal-update {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 247, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.legal-update span {
    margin-left: 8px;
}

/* 3.3 Legal Content Wrapper */
.legal-content {
    position: relative;
    z-index: 1;
    padding: 5px;
}

.legal-wrapper {
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.7;
    background-color: rgba(10, 10, 26, 0.7);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.legal-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 10, 20, 0.4);
    border-color: rgba(0, 247, 255, 0.3);
}

/* 3.4 Legal Typography */
.legal-wrapper h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 40px 0 20px;
    font-family: 'Orbitron', monospace;
}

.legal-wrapper h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-wrapper h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background-color: #00f7ff;
    border-radius: 50%;
}

.legal-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-wrapper ul {
    margin: 20px 0 25px 30px;
    padding: 0;
}

.legal-wrapper li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.legal-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background-color: #00f7ff;
}

/* 3.5 Legal Buttons */
.legal-actions {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.legal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
    text-decoration: none;
    background-color: #00f7ff;
    color: #050508;
    border: 1px solid #00f7ff;
}

.legal-btn:hover {
    color: #00f7ff;
    background-color: transparent;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.legal-btn.secondary {
    background-color: transparent;
    color: #00f7ff;
    border: 1px solid #00f7ff;
}

.legal-btn.secondary:hover {
    background-color: #00f7ff;
    color: #050508;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.legal-btn.tertiary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-btn.tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #00f7ff;
    color: #00f7ff;
}

/* 3.6 Legal Responsive */
@media (min-width: 1200px) {
    .legal-wrapper {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .legal-wrapper {
        max-width: 800px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-hero h1 {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 12px;
        padding-left: 40px;
    }
    
    .legal-subtitle::before {
        width: 30px;
    }
    
    .legal-wrapper {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .legal-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .legal-wrapper h3 {
        font-size: 1.3rem;
        margin: 30px 0 15px;
    }
    
    .legal-wrapper p {
        font-size: 1rem;
    }
    
    .legal-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .legal-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.8rem;
    }
    
    .legal-wrapper ul {
        margin-left: 20px;
    }
    
    .legal-wrapper li {
        padding-left: 20px;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}