/* POLARISSAIL - CSS STYLES */
/* ========================= */

/* Variables CSS */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-blue: #0f172a;
    --light-blue: #e0f2fe;
    --cream: #fef7ed;
    --gold: #fbbf24;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-700: #334155;
    --gray-900: #0f172a;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
}

/* Navegación */
.custom-navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color) !important;
}

/* Sistema de Páginas */
.page-section {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page-section.active {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.9) 0%, 
        rgba(14, 165, 233, 0.8) 50%, 
        rgba(245, 158, 11, 0.7) 100%),
        url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        transparent 0%, 
        rgba(15, 23, 42, 0.3) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-16.569 13.431-30 30-30v30H30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(45deg, var(--accent-color), #f59e0b);
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    color: var(--gray-700);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.floating-card h4 {
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.floating-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.floating-card .price span {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: normal;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Experiencias Sensoriales Section */
.sensory-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.sensory-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: drift 20s linear infinite;
}

@keyframes drift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.sensory-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.sensory-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.sensory-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.sensory-card h4 {
    font-family: var(--font-primary);
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Stories Section */
.stories-section {
    padding: 0;
    background: var(--white);
}

.stories-content {
    padding: 4rem;
    background: var(--dark-blue);
    color: var(--white);
    position: relative;
}

.stories-content::before {
    content: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-blue) 0%, transparent 100%);
    z-index: 2;
}

.stories-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.story-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: var(--font-primary);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.story-author strong {
    display: block;
    color: var(--accent-color);
}

.story-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stories-visual {
    padding: 0;
    position: relative;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.image-stack {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.image-stack img {
    position: absolute;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.image-stack .img-1 {
    top: 20%;
    left: 10%;
    width: 70%;
    height: 60%;
    z-index: 2;
}

.image-stack .img-2 {
    bottom: 10%;
    right: 10%;
    width: 50%;
    height: 40%;
    z-index: 3;
}

/* Secrets Section */
.secrets-section {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
}

.secrets-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e0f2fe' fill-opacity='0.3'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' fill-opacity='0.1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.secrets-list {
    margin-top: 2rem;
}

.secret-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.secret-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.secret-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.secret-item h5 {
    margin: 0;
    color: var(--dark-blue);
    font-weight: 600;
}

.secret-item p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.secrets-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    color: var(--white);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-27.614 22.386-50 50-50v50H50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pricing-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--white);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--white);
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent-color), #f59e0b);
    border: none;
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* About Page Styles */
.page-header {
    margin-bottom: 4rem;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--dark-blue);
}

.about-stats {
    background: linear-gradient(135deg, var(--light-blue), var(--cream));
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-700);
    font-weight: 500;
}

/* Contact Page Styles */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-form h3 {
    font-family: var(--font-primary);
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}

.contact-info {
    background: var(--gray-100);
    padding: 2.5rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-info h3 {
    font-family: var(--font-primary);
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Legal Pages Styles */
.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.legal-content h3 {
    font-family: var(--font-primary);
    color: var(--dark-blue);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.legal-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.company-info {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.refund-table {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem 0;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-brand h4 {
    font-family: var(--font-primary);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stories-content {
        padding: 3rem 2rem;
    }
    
    .stories-visual {
        min-height: 400px;
    }
    
    .image-stack .img-1 {
        width: 80%;
        height: 50%;
    }
    
    .image-stack .img-2 {
        width: 60%;
        height: 35%;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-card {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sensory-section,
    .secrets-section,
    .pricing-section {
        padding: 4rem 0;
    }
    
    .sensory-card {
        margin-bottom: 2rem;
    }
    
    .stories-section .row {
        flex-direction: column-reverse;
    }
    
    .stories-content {
        padding: 2rem;
    }
    
    .stories-content::before {
        display: none;
    }
    
    .stories-visual {
        min-height: 300px;
    }
    
    .secrets-list {
        margin-top: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        height: 400px;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .sensory-card,
    .contact-form,
    .contact-info,
    .legal-content {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .story-item {
        padding: 1.5rem;
    }
    
    .story-quote {
        padding-left: 1.5rem;
    }
    
    .cookie-banner .row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--white);
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 5px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .hero-buttons,
    .btn,
    .footer {
        display: none !important;
    }
    
    .page-section {
        display: block !important;
        page-break-after: always;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .sensory-section {
        background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    }
    
    .sensory-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: var(--white);
    }
    
    .sensory-card h4 {
        color: var(--accent-color);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-hero-primary,
    .btn-cta {
        background: #000;
        border: 2px solid #fff;
    }
    
    .sensory-card,
    .pricing-card {
        border: 2px solid #000;
    }
}