/* 
* Hexolynxio Akvafitness Studio
* Main Stylesheet
*/

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
    --color-background: #F5FFFF;
    --color-primary: #A2D2FF;
    --color-secondary: #BDE0FE;
    --color-text: #1E293B;
    --color-light: #F8FAFC;
    --color-dark: #0F172A;
    --color-success: #22C55E;
    --color-danger: #EF4444;
    --color-warning: #F59E0B;
    --color-info: #0EA5E9;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 0.125rem;
    --border-radius: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    --border-radius-3xl: 1.5rem;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rounded-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-light {
    background-color: var(--color-light);
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.py-8 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary, .btn-secondary {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    color: var(--color-light);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    color: var(--color-light);
    background-color: #8BC1FF;
    border-color: #8BC1FF;
}

.btn-secondary {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    color: var(--color-light);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: 220px;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links li a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.nav-links li a:hover {
    color: var(--color-primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 6px;
}

.menu-toggle span:nth-child(2) {
    top: 14px;
}

.menu-toggle span:nth-child(3) {
    top: 22px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(162, 210, 255, 0.1) 0%, rgba(189, 224, 254, 0.2) 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    opacity: 0.9;
}

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

.hero-image {
    max-width: 45%;
    position: relative;
}

.hero-image img {
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider.inverted {
    transform: rotate(180deg);
    top: 0;
    bottom: auto;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1 1 400px;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 250px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background-color: rgba(162, 210, 255, 0.1);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits {
    padding: 6rem 0;
    position: relative;
    background-color: rgba(189, 224, 254, 0.1);
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    background-color: rgba(162, 210, 255, 0.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.8;
}

.benefits-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 3rem;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses {
    padding: 6rem 0;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.course-card {
    flex: 1 1 260px;
    max-width: 350px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 1.5rem;
}

.course-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.course-level.beginner {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.course-level.intermediate {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.course-level.advanced {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.course-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.course-content p {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
    padding: 6rem 0;
    position: relative;
    background-color: rgba(162, 210, 255, 0.1);
}

.schedule-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--color-light);
}

.schedule-table th,
.schedule-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}

.schedule-table th {
    background-color: var(--color-primary);
    color: var(--color-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.schedule-table td {
    font-size: 0.9rem;
    height: 80px;
    vertical-align: middle;
    background-color: var(--color-light);
}

.schedule-table td.has-class {
    background-color: rgba(189, 224, 254, 0.2);
}

.class-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.instructor {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text);
    opacity: 0.7;
}

.schedule-cta {
    text-align: center;
    margin-top: 3rem;
}

.schedule-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
    padding: 6rem 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.member-certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.member-certifications span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(162, 210, 255, 0.1);
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 6rem 0;
    position: relative;
    background-color: rgba(162, 210, 255, 0.1);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-content {
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 700px;
}

.testimonial-text {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-text p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.7;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: var(--color-light);
    box-shadow: var(--shadow);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--color-primary);
}

.testimonial-prev:hover svg,
.testimonial-next:hover svg {
    stroke: var(--color-light);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background-color: var(--color-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--color-primary);
    width: 30px;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog {
    padding: 6rem 0;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.7;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.blog-link svg {
    transition: var(--transition);
}

.blog-link:hover svg {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding: 6rem 0;
    position: relative;
    background-color: rgba(189, 224, 254, 0.2);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container {
    flex: 1 1 500px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background-color: rgba(162, 210, 255, 0.1);
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-group {
    flex: 1 1 calc(50% - 0.75rem);
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex-basis: 100%;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(30, 41, 59, 0.1);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(162, 210, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Success Page
--------------------------------------------------------------*/
.success-message {
    padding: 10rem 0 6rem;
    text-align: center;
}

.success-content {
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    background-color: rgba(162, 210, 255, 0.1);
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.message-details {
    background-color: rgba(189, 224, 254, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.message-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.success-actions {
    margin-bottom: 3rem;
}

.contact-alternatives {
    margin-top: 3rem;
}

.contact-alternatives h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.alternatives-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.alternative-item {
    display: flex;
    align-items: top;
    gap: 0.75rem;
}

/*--------------------------------------------------------------
# Legal Pages
--------------------------------------------------------------*/
.legal-content {
    padding: 10rem 0 6rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-header p {
    font-size: 1rem;
    color: var(--color-text);
    opacity: 0.7;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
    padding-bottom: 0.75rem;
}

.legal-section h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: var(--color-dark);
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.9;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-section ul li, .legal-section ol li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--color-primary);
}

.contact-info-legal {
    background-color: rgba(189, 224, 254, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--color-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table th, .cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}

.cookie-table th {
    background-color: rgba(162, 210, 255, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-table td {
    font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-size: 1rem;
    color: var(--color-light);
    opacity: 0.8;
}

.footer-links {
    flex: 1 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-light);
    opacity: 0.7;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--color-light);
    opacity: 0.6;
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: #8BC1FF;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-text {
        flex: 0 0 100%;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .nav-links li {
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-light);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-slide {
        height: auto;
        position: relative;
        padding: 1rem;
    }
    
    .testimonials-slider {
        height: auto;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .legal-header h1 {
        font-size: 2.25rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .benefits-counter {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .success-content {
        padding: 1.5rem;
    }
    
    .alternatives-container {
        flex-direction: column;
        align-items: center;
    }
}