/* Green Parrot Clinic - Header & Navigation Styles */

/* Services Dropdown Menu */
.services-dropdown {
    position: relative;
}

.services-toggle {
    display: none;
}

.services-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 246, 243, 0.98);
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-toggle:checked ~ .services-menu {
    opacity: 1;
    visibility: visible;
}

.services-content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    margin: 0;
    padding: 120px 80px 80px 80px;
}

.services-left {
    max-width: 800px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    margin-bottom: 48px;
}

.service-category h3 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #38533A;
    margin-bottom: 16px;
    font-family: 'Crimson Text', 'Times New Roman', serif;
}

.service-category a {
    display: block;
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    text-decoration: none;
    transition: opacity 0.2s ease;
    padding: 2px 0;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.service-category a:hover {
    opacity: 0.6;
}

.services-footer {
    border-top: 1px solid rgba(56, 83, 58, 0.2);
    padding-top: 24px;
}

.services-footer h4 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #38533A;
    margin-bottom: 12px;
    font-family: 'Crimson Text', 'Times New Roman', serif;
}

.services-footer p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    max-width: 400px;
    font-family: Arial, sans-serif;
}

.services-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 101;
}

.services-close::before,
.services-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #666666;
    transition: opacity 0.2s ease;
}

.services-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.services-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.services-close:hover::before,
.services-close:hover::after {
    opacity: 0.6;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 246, 243, 0.98);
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-toggle:checked ~ .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-content {
    padding: 100px 40px 40px 40px;
    height: 100vh;
    overflow-y: auto;
}

.mobile-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 101;
}

.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #666666;
    transition: opacity 0.2s ease;
}

.mobile-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #333333;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { 
    top: 0; 
}

.hamburger span:nth-child(2) { 
    top: 50%; 
    transform: translateY(-50%); 
}

.hamburger span:nth-child(3) { 
    bottom: 0; 
}