* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --wonder-primary: #1a237e;
    --wonder-primary-light: #283593;
    --wonder-primary-dark: #0d47a1;
    --wonder-secondary: #7b1fa2;
    --wonder-accent: #ff9800;
    --wonder-accent-light: #ffc107;
    --wonder-cyan: #00bcd4;
    --wonder-text-dark: #1a1a1a;
    --wonder-text-light: #666666;
    --wonder-text-white: #ffffff;
    --wonder-bg-light: #f8f9fa;
    --wonder-bg-white: #ffffff;
    --wonder-border: #e0e0e0;
    --wonder-shadow: rgba(0, 0, 0, 0.1);
    --wonder-shadow-hover: rgba(0, 0, 0, 0.15);
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--wonder-text-dark);
    background-color: var(--wonder-bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.wonder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.wonder-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--wonder-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.wonder-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.wonder-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--wonder-primary);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.wonder-header .wonder-logo {
    font-size: 20px;
}

.wonder-footer .wonder-logo {
    color: var(--wonder-text-white);
    margin-bottom: 20px;
}

.wonder-logo:hover {
    color: var(--wonder-secondary);
}

.wonder-nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.wonder-nav-link {
    text-decoration: none;
    color: var(--wonder-text-dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.wonder-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--wonder-primary), var(--wonder-secondary));
    transition: width 0.3s ease;
}

.wonder-nav-link:hover,
.wonder-nav-link.wonder-active {
    color: var(--wonder-primary);
}

.wonder-nav-link:hover::after,
.wonder-nav-link.wonder-active::after {
    width: 100%;
}

.wonder-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.wonder-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--wonder-primary);
    transition: all 0.3s ease;
}

.wonder-page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #7b1fa2 100%);
    overflow: hidden;
}

.wonder-page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.wonder-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.wonder-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--wonder-cyan);
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.wonder-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--wonder-accent);
    bottom: -150px;
    left: -100px;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.wonder-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--wonder-text-white);
}

.wonder-page-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wonder-page-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.wonder-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.wonder-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 16px;
}

.wonder-section-description {
    font-size: 18px;
    color: var(--wonder-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.wonder-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.wonder-btn-primary {
    background: linear-gradient(135deg, var(--wonder-accent) 0%, var(--wonder-accent-light) 100%);
    color: var(--wonder-text-white);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.wonder-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4);
}

.wonder-btn-secondary {
    background: transparent;
    color: var(--wonder-text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.wonder-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--wonder-text-white);
}

.wonder-btn-outline {
    background: transparent;
    color: var(--wonder-primary);
    border: 2px solid var(--wonder-primary);
}

.wonder-btn-outline:hover {
    background: var(--wonder-primary);
    color: var(--wonder-text-white);
}

.wonder-btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.wonder-contact-info {
    padding: 100px 0;
    background: var(--wonder-bg-white);
}

.wonder-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.wonder-contact-card {
    background: var(--wonder-bg-light);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.wonder-contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.wonder-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--wonder-shadow);
    background: var(--wonder-bg-white);
}

.wonder-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-secondary) 100%);
    border-radius: 50%;
    color: var(--wonder-text-white);
    transition: all 0.3s ease;
}

.wonder-contact-icon .material-icons {
    font-size: 40px;
    line-height: 1;
}

.wonder-contact-card:hover .wonder-contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.wonder-contact-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 16px;
}

.wonder-contact-text {
    font-size: 16px;
    color: var(--wonder-text-light);
    line-height: 1.8;
}

.wonder-contact-text a {
    color: var(--wonder-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wonder-contact-text a:hover {
    color: var(--wonder-secondary);
    text-decoration: underline;
}

.wonder-inquiry {
    padding: 100px 0;
    background: var(--wonder-bg-light);
}

.wonder-inquiry-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.wonder-inquiry-form-wrapper {
    background: var(--wonder-bg-white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--wonder-shadow);
}

.wonder-inquiry-form-wrapper .wonder-section-title {
    text-align: left;
    margin-bottom: 12px;
}

.wonder-inquiry-form-wrapper .wonder-section-description {
    text-align: left;
    margin: 0 0 40px 0;
    max-width: 100%;
}

.wonder-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wonder-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wonder-form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--wonder-text-dark);
}

.wonder-form-input,
.wonder-form-textarea {
    padding: 16px 20px;
    border: 2px solid var(--wonder-border);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--wonder-text-dark);
    background: var(--wonder-bg-white);
    transition: all 0.3s ease;
    width: 100%;
}

.wonder-form-input:focus,
.wonder-form-textarea:focus {
    outline: none;
    border-color: var(--wonder-primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.wonder-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.wonder-inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wonder-info-card {
    background: var(--wonder-bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--wonder-shadow);
    transition: all 0.3s ease;
}

.wonder-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--wonder-shadow-hover);
}

.wonder-info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-secondary) 100%);
    border-radius: 50%;
    color: var(--wonder-text-white);
}

.wonder-info-icon .material-icons {
    font-size: 30px;
    line-height: 1;
}

.wonder-info-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 20px;
}

.wonder-info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wonder-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--wonder-border);
}

.wonder-hours-item:last-child {
    border-bottom: none;
}

.wonder-hours-day {
    font-weight: 600;
    color: var(--wonder-text-dark);
}

.wonder-hours-time {
    color: var(--wonder-text-light);
}

.wonder-info-text {
    font-size: 16px;
    color: var(--wonder-text-light);
    line-height: 1.8;
}

.wonder-location {
    padding: 100px 0;
    background: var(--wonder-bg-white);
}

.wonder-location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.wonder-location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--wonder-shadow);
}

.wonder-location-map img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.wonder-location-map:hover img {
    transform: scale(1.05);
}

.wonder-location-details {
    padding: 20px;
}

.wonder-location-title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 30px;
}

.wonder-location-address {
    margin-bottom: 40px;
}

.wonder-location-address p {
    font-size: 16px;
    color: var(--wonder-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.wonder-location-address p strong {
    color: var(--wonder-text-dark);
    font-weight: 600;
}

.wonder-location-directions {
    background: var(--wonder-bg-light);
    padding: 30px;
    border-radius: 12px;
}

.wonder-directions-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 20px;
}

.wonder-directions-list {
    list-style: none;
}

.wonder-directions-list li {
    font-size: 15px;
    color: var(--wonder-text-light);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.wonder-directions-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--wonder-primary);
    font-weight: bold;
    font-size: 18px;
}

.wonder-social {
    padding: 100px 0;
    background: var(--wonder-bg-light);
}

.wonder-social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.wonder-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 30px;
    background: var(--wonder-bg-white);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    box-shadow: 0 10px 30px var(--wonder-shadow);
    opacity: 0;
    transform: translateY(30px);
}

.wonder-social-link.visible {
    opacity: 1;
    transform: translateY(0);
}

.wonder-social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--wonder-shadow-hover);
}

.wonder-social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-secondary) 100%);
    border-radius: 50%;
    color: var(--wonder-text-white);
    transition: all 0.3s ease;
}

.wonder-social-icon .material-icons {
    font-size: 40px;
    line-height: 1;
}

.wonder-social-link:hover .wonder-social-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.wonder-social-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--wonder-text-dark);
    transition: color 0.3s ease;
}

.wonder-social-link:hover .wonder-social-text {
    color: var(--wonder-primary);
}

.wonder-footer {
    background: var(--wonder-text-dark);
    color: var(--wonder-text-white);
    padding: 80px 0 30px;
}

.wonder-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.wonder-footer-section {
    padding: 0 20px;
}

.wonder-footer-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.wonder-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--wonder-text-white);
}

.wonder-footer-links {
    list-style: none;
}

.wonder-footer-links li {
    margin-bottom: 12px;
}

.wonder-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wonder-footer-links a:hover {
    color: var(--wonder-accent);
}

.wonder-footer-contact {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.wonder-footer-contact li {
    margin-bottom: 12px;
}

.wonder-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wonder-footer-contact a:hover {
    color: var(--wonder-accent);
}

.wonder-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wonder-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.wonder-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wonder-footer-bottom a:hover {
    color: var(--wonder-accent);
}

.wonder-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wonder-bg-white);
    box-shadow: 0 -4px 30px var(--wonder-shadow-hover);
    z-index: 2000;
    padding: 30px 40px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--wonder-primary);
}

.wonder-privacy-banner.show {
    transform: translateY(0);
}

.wonder-privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wonder-privacy-text {
    flex: 1;
}

.wonder-privacy-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 12px;
}

.wonder-privacy-description {
    font-size: 15px;
    color: var(--wonder-text-light);
    line-height: 1.6;
}

.wonder-privacy-link {
    color: var(--wonder-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wonder-privacy-link:hover {
    color: var(--wonder-secondary);
    text-decoration: underline;
}

.wonder-privacy-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.wonder-privacy-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wonder-privacy-accept {
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-primary-light) 100%);
    color: var(--wonder-text-white);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.wonder-privacy-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.wonder-privacy-decline {
    background: transparent;
    color: var(--wonder-text-dark);
    border: 2px solid var(--wonder-border);
}

.wonder-privacy-decline:hover {
    background: var(--wonder-bg-light);
    border-color: var(--wonder-text-light);
}

@media (max-width: 968px) {
    .wonder-container {
        padding: 0 30px;
    }

    .wonder-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--wonder-bg-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px var(--wonder-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
    }

    .wonder-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .wonder-nav-link {
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--wonder-border);
    }

    .wonder-nav-link:last-child {
        border-bottom: none;
    }

    .wonder-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .wonder-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .wonder-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .wonder-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .wonder-page-hero-title {
        font-size: 42px;
    }

    .wonder-inquiry-content {
        grid-template-columns: 1fr;
    }

    .wonder-location-content {
        grid-template-columns: 1fr;
    }

    .wonder-section-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .wonder-container {
        padding: 0 20px;
    }

    .wonder-page-hero-title {
        font-size: 32px;
    }

    .wonder-section-title {
        font-size: 28px;
    }

    .wonder-contact-grid {
        grid-template-columns: 1fr;
    }

    .wonder-inquiry-form-wrapper {
        padding: 40px 30px;
    }

    .wonder-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wonder-social-link {
        min-width: auto;
        width: 100%;
    }

    .wonder-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wonder-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wonder-privacy-content {
        flex-direction: column;
        gap: 20px;
    }

    .wonder-privacy-buttons {
        width: 100%;
        flex-direction: column;
    }

    .wonder-privacy-btn {
        width: 100%;
    }
}

