/* ============================================
   SERVICE PAGES - THE TAMTAM
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #C65BCF;
    --orange: #F5A623;
    --red: #E53935;
    --blue: #4A90D9;
    --white: #FFFFFF;
    --black: #000000;
    --bg: #0a0a0a;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}



body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   THEMES
   ============================================ */
.purple-theme .service-tag,
.purple-theme .back-btn:hover,
.purple-theme .contact-btn:hover {
    color: var(--orange);
}

.orange-theme .service-tag,
.orange-theme .back-btn:hover,
.orange-theme .contact-btn:hover {
    color: var(--orange);
}

.red-theme .service-tag,
.red-theme .back-btn:hover,
.red-theme .contact-btn:hover {
    color: var(--red);
}

.blue-theme .service-tag,
.blue-theme .back-btn:hover,
.blue-theme .contact-btn:hover {
    color: var(--blue);
}

/* ============================================
   HEADER
   ============================================ */
/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-decoration: none;
}

.header-logo img {
    height: 36px;
    width: auto;
}

.header-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.service-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 48px 100px;
}

/* Hero Section */
.service-hero {
    margin-bottom: 100px;
}

.service-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

/* Content Section */
.service-content {
    max-width: 900px;
}

.content-block {
    margin-bottom: 60px;
}

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

.content-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.service-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.back-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-4px);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-btn:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(198, 91, 207, 0.4);
}

.contact-btn .arrow {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.contact-btn:hover .arrow {
    transform: translateX(6px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .service-main {
        padding: 120px 24px 80px;
    }
    
    .service-hero {
        margin-bottom: 60px;
    }
    
    .content-block {
        margin-bottom: 40px;
    }
    
    .content-block h3 {
        font-size: 20px;
    }
    
    .content-block p {
        font-size: 16px;
    }
    
    .header {
        padding: 20px 24px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .service-footer {
        padding: 20px 24px;
    }
}
