/* @font-face definitions for self-hosted Google Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/outfit-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/outfit-800.woff2') format('woff2');
}

:root {
    --primary-color: #1fbabf;
    --primary-hover: #199ea3;
    --primary-light: rgba(31, 186, 191, 0.1);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-pure: #ffffff;
    --bg-offwhite: #f8fafc;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.04), 0 8px 12px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 32px -4px rgba(31, 186, 191, 0.12), 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    --shadow-teal: 0 10px 25px -5px rgba(31, 186, 191, 0.3);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition-color: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-btn: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-card: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-icon: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-pure);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

address {
    font-style: normal;
}

/* Keyboard navigation accessibility focus indicator */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Antigravity floating backgrounds */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    /* animation: float 20s ease-in-out infinite alternate; */
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -100px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
    top: 600px;
    left: -200px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Structure */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-btn);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -5px rgba(31, 186, 191, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Antigravity utility class */
.antigravity-hover {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-card);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.antigravity-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 16px;
    max-width: 500px;
}

.hero-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    padding: 24px;
    padding-bottom: 100px;
    max-width: 420px;
    background: white;
    border-radius: var(--radius-xl);
    z-index: 2;
    /* animation: levitate 12s ease-in-out infinite; */
}

.image-container {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-card-info {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 85%;
    white-space: nowrap;
}

.hero-card-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-card-info p {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(31, 186, 191, 0.4);
    z-index: 1;
}

.dot-1 {
    width: 24px;
    height: 24px;
    top: 10%;
    right: 5%;
    animation: levitate 8s ease-in-out infinite reverse;
}

.dot-2 {
    width: 16px;
    height: 16px;
    bottom: 20%;
    left: 0;
    opacity: 0.6;
    animation: levitate 10s ease-in-out infinite;
}

/* Services */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-icon);
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-text {
    font-size: 0.95rem;
}

/* Mid CTA */
.mid-cta {
    padding: 60px 0;
}

.cta-banner {
    padding: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

/* About Section */
.about {
    padding: 80px 0 120px;
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.about-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto 48px;
    max-width: max-content;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.inspiring-tagline {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.inspiring-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 2px;
}


/* Contact Section */
.contact {
    padding: 80px 0 120px;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.contact-details {
    padding: 32px;
    text-align: left;
    max-width: 500px;
    width: 100%;
}

.contact-details h3 {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-value {
    color: var(--text-muted);
}

a.contact-value:hover {
    color: var(--primary-color);
}

.map-wrapper {
    overflow: hidden;
    height: 450px;
}

.map-wrapper iframe {
    display: block;
}

/* Footer */
.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
}

.footer-logo-img {
    height: 32px;
}

.copyright {
    font-size: 0.875rem;
}

/* Page Components */
.page-hero {
    padding: 120px 0 60px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

.info-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    font-size: 1.1rem;
}

.price-table-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.price-item {
    padding: 32px;
    text-align: center;
}

.highlight-card {
    border: 2px solid var(--primary-color);
    background: var(--primary-light);
}

.price-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.price-header h3 {
    font-size: 1.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.service-details {
    padding-bottom: 120px;
}

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

.detail-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-dark);
}

.price {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-grid, .price-table-grid, .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 101;
        padding: 8px;
        margin-right: -8px;
    }

    .mobile-menu-btn svg {
        transition: transform 0.3s ease;
    }

    .header.menu-open .mobile-menu-btn svg {
        transform: rotate(90deg);
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateY(-20px);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a:not(.btn) {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 16px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .info-grid, .price-table-grid, .details-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner h2 {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .benefits-list {
        width: 100%;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Hide expensive background blur shapes on mobile to optimize performance */
    .bg-shape {
        display: none;
    }
}

/* Custom Cookie Banner */
#custom-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 9999;
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.cookie-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    #custom-cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* Cookie Shield Button */
#cookie-shield-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    padding: 12px;
}

#cookie-shield-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-hover);
}

#cookie-shield-btn svg {
    width: 100%;
    height: 100%;
}

/* Voucher Page Styles */
.voucher-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.voucher-info-card {
    max-width: 800px;
    text-align: center;
    margin-bottom: 40px;
}

.voucher-info-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.voucher-info-card p + p {
    margin-top: 16px;
}

.voucher-info-card a {
    color: var(--primary-color);
}

.voucher-footer {
    justify-content: center;
    font-size: 1.5rem;
    border-top: none !important;
}
