/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #001a17;
}

header .container {
    max-width: unset;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
.header {
    background: linear-gradient(180deg, #0f727c, #004e56);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    min-height: 60px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo img {
    height: 100%;
}

.nav-menu {
    display: none;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffab49;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons button {
    background: linear-gradient(180deg, #ffe600, #ffb800);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    color: #00352f;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.auth-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.4);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #00352f;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #075a51;
}

/* Active navigation state for mobile */
.mobile-menu a.active {
    color: #ffab49;
    background: rgba(255, 171, 73, 0.1);
}

/* Video banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 60px;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 47, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}

.video-overlay h1 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 90%;
}

/* Main content */
.main-content {
    padding: 40px 0;
}

.section {
    margin-bottom: 50px;
}

.section h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: linear-gradient(135deg, #075a51, #00352f);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #0f727c;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 171, 73, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    color: #ffab49;
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card .stat-number {
    font-size: 24px;
    color: #ffab49;
    font-weight: bold;
}

/* CTA buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #ffe600, #ffb800);
    color: #00352f;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 44px;
    line-height: 20px;
    box-shadow: 0 3px 15px rgba(255, 230, 0, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 230, 0, 0.5);
    background: linear-gradient(180deg, #ffb800, #ffe600);
}

.cta-button.secondary {
    background: linear-gradient(180deg, #0f727c, #004e56);
    color: white;
    box-shadow: 0 3px 15px rgba(15, 114, 124, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 6px 25px rgba(15, 114, 124, 0.5);
}

.cta-button.large {
    font-size: 20px;
    padding: 15px 40px;
}

.cta-button.full-width {
    width: 100%;
}

/* Features section */
.features {
    background: #075a51;
    padding: 40px 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.features h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.feature-item i {
    font-size: 24px;
    color: #ffab49;
    min-width: 30px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #e0e0e0;
    margin: 0;
}

/* Footer */
.footer {
    background: #00352f;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ffab49;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffab49;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: #e0e0e0;
    padding: 8px;
    background: #075a51;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #ffab49;
    transform: scale(1.1);
}

.payment-links {
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #075a51;
    padding-top: 20px;
    text-align: center;
    color: #e0e0e0;
    font-size: 14px;
}

@media (min-width:400px) {
    .auth-buttons button:first-child::after {
        content: " Login";
    }
    
    .auth-buttons button:last-child::after {
        content: " Register";
    }
}

/* Responsive styles */
@media (min-width: 768px) {
    

    
    .video-banner {
        height: 400px;
    }
    
    .video-overlay h1 {
        font-size: 36px;
    }
    
    .video-overlay p {
        font-size: 18px;
        max-width: 70%;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .header-content {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: block;
    }
    
    .auth-buttons button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .video-banner {
        height: 500px;
    }
    
    .video-overlay h1 {
        font-size: 48px;
    }
    
    .video-overlay p {
        font-size: 20px;
        max-width: 60%;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section h2 {
        font-size: 36px;
    }
    
    .section p {
        font-size: 18px;
        max-width: 80%;
        margin: 0 auto 20px;
    }
}

/* Login page specific styles */
.login-form {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #075a51, #00352f);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-form h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.login-form .form-note {
    text-align: center;
    margin-top: 20px;
    color: #e0e0e0;
}

.login-form .form-note a {
    color: #ffab49;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #0f727c;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffab49;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ styles */
.faq-item {
    background: #075a51;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 171, 73, 0.1);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

.faq-answer a {
    color: #ffab49;
}

/* Wellbeing section */
.wellbeing-section {
    background: #075a51;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.wellbeing-section h3 {
    color: white;
    margin-bottom: 15px;
}

.wellbeing-section p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.wellbeing-section .disclaimer {
    color: #e0e0e0;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.wellbeing-section a {
    color: #ffab49;
}

/* Footer disclaimer */
.footer-disclaimer {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.cta-center {
    text-align: center;
}

/* Call to Action Sections */
.section.text-center {
    background: linear-gradient(135deg, #0f727c 0%, #004e56 50%, #00352f 100%);
    border: 2px solid #075a51;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(0, 53, 47, 0.3);
    position: relative;
    overflow: hidden;
    animation: ctaFloat 6s ease-in-out infinite;
}

.section.text-center::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 230, 0, 0.1), transparent);
    animation: ctaShine 8s linear infinite;
    pointer-events: none;
}

.section.text-center h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: ctaTextGlow 3s ease-in-out infinite alternate;
}

.section.text-center p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button.large {
    background: linear-gradient(135deg, #ffe600 0%, #ffb800 100%);
    color: #00352f;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: 3px solid #ffab49;
    box-shadow: 0 8px 25px rgba(255, 230, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: ctaPulse 4s ease-in-out infinite;
}

.cta-button.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button.large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 230, 0, 0.6);
    border-color: #ffe600;
}

.cta-button.large:hover::before {
    left: 100%;
}

.cta-button.large:active {
    transform: translateY(-1px) scale(1.02);
}

/* CTA Animations */
@keyframes ctaFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ctaShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes ctaTextGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 230, 0, 0.3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.6);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 230, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 230, 0, 0.6), 0 0 30px rgba(255, 230, 0, 0.3);
    }
}

/* Enhanced regular CTA buttons */
.cta-button {
    background: linear-gradient(135deg, #ffe600 0%, #ffb800 100%);
    color: #00352f;
    padding: 0.8rem 2rem;
    border: 2px solid #ffab49;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 230, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 230, 0, 0.5);
    border-color: #ffe600;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(0px);
}

/* CTA Center utility class */
.cta-center {
    text-align: center;
    margin: 2rem 0;
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .section.text-center {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .section.text-center h2 {
        font-size: 2rem;
    }
    
    .section.text-center p {
        font-size: 1.1rem;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
} 