/* Premium Geo Page Styles */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-cyan: #00fffc;
    --accent-glow: rgba(0, 255, 252, 0.15);
    --border-light: rgba(255, 255, 255, 0.1);
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
}

/* --- VISIBILITY FIXES --- */
/* Override style.css scroll animations that hide content */
section,
.service-hero,
.service-content {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* --- HEADER FIXES (Island Header) --- */
/* Ensure island header sits on top and has correct background */
.island-header {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid var(--border-light) !important;
    z-index: 1000 !important;
}

.island-nav a {
    color: var(--text-main) !important;
}

.island-nav a:hover {
    color: var(--accent-cyan) !important;
}

/* --- HERO SECTION --- */
.service-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    padding: 140px 0 80px;
    /* Increased top padding for header */
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    margin-top: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.service-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 3.5rem;
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--accent-glow);
    text-align: center;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* --- CONTENT SECTIONS --- */
.service-content {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    margin-top: 3rem;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Lists as Cards */
.service-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-content ul li {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-content ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-cyan);
}

.service-content ul li strong {
    display: block;
    color: var(--accent-cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.service-content div[itemscope] {
    margin-top: 4rem;
    display: grid;
    gap: 1.5rem;
}

.service-content div[itemscope]>div {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: 12px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* Buttons */
.btn,
.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 3rem;
    box-shadow: 0 0 15px var(--accent-glow);
    text-align: center;
}

.btn:hover,
.btn-primary:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 30px var(--accent-cyan);
}

/* --- FOOTER FIXES --- */
.main-footer {
    background: #050505 !important;
    border-top: 1px solid var(--border-light) !important;
    padding: 4rem 2rem 2rem !important;
    margin-top: 4rem;
}

.footer-content {
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
}

.footer-links a {
    color: var(--text-muted) !important;
}

.footer-links a:hover {
    color: var(--accent-cyan) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }

    .service-content ul {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding-top: 120px;
    }
}