* {
margin: 0;
            padding: 0;
            box-sizing: border-box;
}

:root {
--primary: #4A6274;
            --secondary: #6B8191;
            --tertiary: #8BA0AF;
            --quaternary: #ADB8B9;
            --quinary: #CDD4CD;
            --light: #EBEAE8;
            --white: #FFFFFF;
            --text-primary: #2C3E50;
            --text-secondary: #5A6C7D;
}

.header-content {
max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
}

.logo-container {
display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
}

.logo-text {
display: flex;
            flex-direction: column;
}

.nav {
display: flex;
            gap: 1.5rem;
            align-items: center;
}

.nav-link:hover {
opacity: 0.8;
}

.hamburger {
display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-menu {
position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: -4px 0 20px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 1001;
            overflow-y: auto;
            padding-top: 80px;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu-overlay {
position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
}

.mobile-menu-overlay.active {
opacity: 1;
            visibility: visible;
}

.mobile-nav-item {
border-bottom: 1px solid rgba(74, 98, 116, 0.1);
}

.mobile-nav-link {
display: block;
            padding: 1rem 1.5rem;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
}

.mobile-nav-link:hover,
        .mobile-nav-link:active {
background-color: var(--light);
            color: var(--primary);
}

.mobile-dropdown-toggle {
display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 1rem 1.5rem;
            color: var(--text-primary);
            font-weight: 500;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s ease;
}

.mobile-dropdown-toggle:hover,
        .mobile-dropdown-toggle:active {
background-color: var(--light);
            color: var(--primary);
}

.mobile-dropdown-toggle::after {
content: '›';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
transform: rotate(90deg);
}

.mobile-dropdown {
max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(74, 98, 116, 0.05);
}

.mobile-dropdown.active {
max-height: 500px;
}

.mobile-dropdown a {
display: block;
            padding: 0.875rem 1.5rem 0.875rem 2.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
}

.mobile-dropdown a:hover,
        .mobile-dropdown a:active {
background-color: rgba(74, 98, 116, 0.1);
            color: var(--primary);
}

.mobile-book-btn {
display: block;
            margin: 1.5rem;
            padding: 1rem;
            text-align: center;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 9999px;
            font-weight: 600;
            box-shadow: 0 4px 16px rgba(74, 98, 116, 0.3);
            transition: all 0.3s ease;
}

.mobile-book-btn:hover,
        .mobile-book-btn:active {
background: var(--secondary);
            transform: scale(1.02);
}

.footer {
padding: 2rem 1.5rem;
            margin: 0 0 2rem 0;
}

.footer-container {
max-width: 1152px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
}

.social-icon-link {
display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 
                0 4px 20px rgba(31, 38, 135, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
}

.social-icon-link::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                transparent 40%,
                rgba(255, 255, 255, 0.5) 50%,
                transparent 60%
            );
            background-size: 200% 200%;
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 50%;
}

.social-icon-link:hover::before {
animation: shimmer 1.5s;
            opacity: 1;
}

.social-icon-link:hover {
background: rgba(255, 255, 255, 0.8);
            transform: translateY(-6px) scale(1.05);
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.social-icon {
width: 32px;
            height: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
}

@media (max-width: 1024px) {

  .nav {
  display: none;
  }

  .hamburger {
  display: flex;
  }

}
