:root {
    --text: #0a101a;
    --background: #f4f7fc;
    --primary: #3e7dd6;
    --secondary: #82afee;
    --accent: #428bf1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Noto Sans Anatolian Hieroglyphs', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar */
.top-bar {
    background: var(--text);
    color: white;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 4rem 0;
    flex: 1 0 auto;
}

.services h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text);
}

.service-category {
    margin-bottom: 2rem;
}

.category-toggle {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-toggle:hover {
    background: var(--background);
}

.category-toggle .arrow {
    transition: transform 0.3s ease;
}

.category-toggle.active .arrow {
    transform: rotate(180deg);
}

.category-content {
    display: none;
    background: white;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-content.active {
    display: block;
}

.service-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    color: var(--text);
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
}

.service-item p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-item ul {
    list-style-position: inside;
    color: #4a5568;
    margin: 1rem 0;
}

.notice {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    text-align: center;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.emergency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-info {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .services h1 {
        font-size: 2rem;
    }

    .category-toggle {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .category-content {
        padding: 1rem;
    }

    .service-item h3 {
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}