/* Base Styles */
:root {
    --primary-color: #00d1b2;
    --primary-color-dark: #00a08c;
    --secondary-color: #485fc7;
    --secondary-color-dark: #3a4da3;
    --accent-color: #ff6b6b;
    --accent-color-dark: #ff4747;
    --dark-color: #363636;
    --dark-color-light: #4a4a4a;
    --light-color: #f5f5f5;
    --light-color-dark: #e0e0e0;
    --text-color: #333333;
    --text-color-light: #666666;
    --light-text-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s;
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

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

p {
    margin-bottom: 1.5rem;
}

.title, .subtitle {
    font-family: 'Raleway', sans-serif;
}

.has-text-centered {
    text-align: center;
}

/* Layout */
.container {
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, rgba(0, 209, 178, 0.95), rgba(72, 95, 199, 0.95));
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.navbar-item {
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-burger span {
    background-color: var(--light-text-color);
}

.navbar.is-fixed-top {
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.3), rgba(72, 95, 199, 0.3));
    z-index: 1;
}

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

.hero .title,
.hero .subtitle,
.hero p {
    color: var(--light-text-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.button {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    border-radius: 25px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
}

.button.is-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--light-text-color);
}

.button.is-primary:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.button.is-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button.is-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.button.is-large {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
}

.button.is-rounded {
    border-radius: 9999px;
}

.button.is-fullwidth {
    width: 100%;
    display: block;
}

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

.buttons.is-centered {
    justify-content: center;
}

/* Cards */
.card {
    transition: all var(--transition-speed) ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

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

.card-image {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card-image img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

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

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content .title {
    margin-top: 0;
}

.card-content .content {
    flex-grow: 1;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -13px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -13px;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content .title {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-marker {
        left: 18px !important;
        right: auto !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
}

/* Testimonials */
.testimonial-card {
    position: relative;
    padding: 2rem;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 209, 178, 0.1);
    font-family: 'Georgia', serif;
}

.testimonial-card .media {
    align-items: center;
}

.testimonial-card .media-left {
    margin-right: 1.5rem;
}

.testimonial-card .media-content {
    overflow: visible;
}

.testimonial-card .content {
    margin-top: 1rem;
}

.stars {
    color: #ffc107;
    margin-top: 10px;
}

/* Product Cards */
.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-card .card-image {
    height: 250px;
}

.product-card .card-image img {
    height: 100%;
    object-fit: cover;
}

.product-card .subtitle.is-5 {
    color: var(--primary-color);
    font-weight: 600;
}

.product-card .content ul {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* Team Cards */
.team-card .card-image {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-card .card-content {
    text-align: center;
}

.team-card .title {
    margin-bottom: 0.25rem;
}

.team-card .subtitle {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Resource Cards */
.resource-card {
    background-color: white;
    transition: all var(--transition-speed) ease;
}

.resource-card:hover {
    background-color: var(--light-color);
}

.resource-card a {
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

.resource-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Value Cards */
.value-card {
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

/* Award Cards */
.award-card {
    text-align: center;
}

.award-card .card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card .card-image img {
    max-height: 180px;
    object-fit: contain;
}

/* FAQ Cards */
.faq-card {
    height: 100%;
}

.faq-card .title {
    color: var(--primary-color);
}

/* Contact Section */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item .icon {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

input.input, 
textarea.textarea, 
select.select {
    border-radius: 5px;
    box-shadow: none;
    transition: all var(--transition-speed) ease;
}

input.input:focus, 
textarea.textarea:focus, 
select.select:focus {
    box-shadow: 0 0 0 2px rgba(0, 209, 178, 0.25);
    border-color: var(--primary-color);
}

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

.field {
    margin-bottom: 1.5rem;
}

.control.has-icons-left .icon {
    color: var(--text-color-light);
}

/* Success Page */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.success-card {
    padding: 2rem;
    border-top: 5px solid var(--primary-color);
    text-align: center;
}

.success-card .icon.is-large {
    margin-bottom: 1.5rem;
}

.success-card .icon.has-text-success {
    color: var(--primary-color) !important;
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--dark-color), #2a2a2a);
    color: var(--light-text-color);
    padding: 3rem 1.5rem 2rem;
}

.footer a {
    color: var(--light-text-color);
    transition: color var(--transition-speed) ease;
}

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

.footer ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

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

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-weight: 500;
    padding: 0.25rem 0;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Privacy & Terms Pages */
.privacy-section,
.terms-section {
    padding-top: 100px;
}

/* Read More Links */
.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-right: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-speed) ease;
}

.read-more:hover {
    color: var(--primary-color-dark);
}

.read-more:hover::after {
    transform: translate(5px, -50%);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Cookie Consent */
#cookieConsent {
    transition: all 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#acceptCookies {
    transition: all 0.3s ease;
    cursor: pointer;
}

#acceptCookies:hover {
    background-color: var(--primary-color-dark) !important;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 3rem 1.5rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .column {
        padding: 0.75rem;
    }
    
    .title.is-1 {
        font-size: 2.5rem;
    }
    
    .subtitle.is-3 {
        font-size: 1.75rem;
    }
    
    .card-image {
        height: auto !important;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .buttons .button {
        margin-bottom: 0.5rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .title.is-1 {
        font-size: 3rem;
    }
    
    .subtitle.is-3 {
        font-size: 2rem;
    }
}

/* Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mt-6 { margin-top: 3rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 0.75rem !important; }
.mr-4 { margin-right: 1rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.ml-4 { margin-left: 1rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }