@import url('https://fonts.googleapis.com/css?family=Noto%20Sans%20Linear%20A:700|Noto%20Sans%20Linear%20A:400');
/* :root {
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Frank Ruhl Libre", serif;
    --admin-height: 32px;
    --header-height: 90px;
    --white: #fff;
    --white-rgb: 255, 255, 255;
    --black: #000;
    --black-rgb: 0, 0, 0;
    --blue-primary: #003567;
    --blue-primary-rgb: 0, 53, 103;
    --blue-dark: #002145;
    --blue-dark-rgb: 0, 33, 69;
    --blue-neutral: #EBF2FA;
    --blue-neutral-2: #D3E2F0;
    --blue-neutral-3: #BAC8D6;
    --cyan: #77D9ED;
    --text-font: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem);
  } */


:root {
    --text: #0a101a;
    --background: #f4f7fc;
    --primary: #3e7dd6;
    --secondary: #82afee;
    --accent: #428bf1;
    --blue-dark: #002145;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 'Noto Sans Anatolian Hieroglyphs', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.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);
}

.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);
}

/* Hero Section */
.hero {
    background: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.appointment-info {
    text-align: center;
    margin-bottom: 3rem;
}

.appointment-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.appointment-info p {
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

.appointment-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: var(--background);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(62, 125, 214, 0.1);
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

/* Submit Button */
.btn-submit {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--accent);
}

/* Cards */
.hours-card,
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hours-card h2,
.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hours-grid {
    display: grid;
    gap: 0.75rem;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.day:last-child {
    border-bottom: none;
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map {
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Footer */
footer {
    background: var(--blue-dark);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.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 Navigation */
.hamburger {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-info {
        display: none;
    }

    .hamburger {
        display: flex;
        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: 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;
    }

    .hero {
        padding: 2rem 0;
    }

    .appointment-info h1 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}