/* Root Variables */

:root {
    --primary: #08C6AB;
    --primary-hover: #069e8d;
    --text-light: #fff;
    --text-muted: #ccc;
    --bg-dark: #121212;
    --font-main: 'Poppins', sans-serif;
}


/* Global Styles */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}


/* Header */

header {
    background-color: var(--bg-dark);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a:hover {
    color: var(--primary-hover);
}


/* Hero Section */

.services-hero {
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px 40px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.7);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.services-hero p {
    font-size: 18px;
    color: var(--text-light);
}


/* Services Section */

.services-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services-section h1 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.services-section p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* Toggle Buttons */

.service-toggle {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto 30px;
    gap: 10px;
    height: 40px;
    width: 250px;
    border-radius: 6px;
    padding: 4px;
}

.toggle-btn {
    padding: 8px 16px;
    border: none;
    background-color: var(--primary);
    color: var(--text-light);
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
}

.toggle-btn:hover {
    background-color: var(--primary-hover);
}

.toggle-btn.active {
    background-color: var(--text-light);
    color: var(--primary);
}


/* Service Cards */

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    flex: 0 0 300px;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p,
.service-card ul {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Make service icons responsive */

.service-card img {
    max-width: 60px;
    height: auto;
    margin-bottom: 10px;
}


/* Price */

.price {
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}


/* CTA Section */

.cta-section {
    padding: 60px 20px;
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-btn {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
}


/* Footer */

.site-footer {
    width: 100%;
    background-color: #212B38;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    border-top: 3px solid #08C6AB;
    font-size: 0.9rem;
}

.site-footer a {
    color: #08C6AB;
    text-decoration: none;
    margin: 0 8px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.footer-center a {
    margin: 0 10px;
}

.social-icon {
    width: 22px;
    height: 22px;
    margin-left: 10px;
}


/* Responsive */

@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
    }
    .services-hero h1 {
        font-size: 28px;
    }
    .services-hero p,
    .services-section p {
        font-size: 16px;
    }
    .service-toggle {
        width: 100%;
        max-width: 300px;
    }
}