:root {
    --background: #F5F5F5;
    --primary: #07CEEB;
    --text: #006579;
    --white: #FFFFFF;
    --shadow: rgba(0, 101, 121, 0.1);
    --shadow-hover: rgba(0, 101, 121, 0.15);
    --gradient: linear-gradient(135deg, #07CEEB 0%, #006579 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow-hover);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--gradient);
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2307CEEB;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23006579;stop-opacity:0.1" /></linearGradient></defs><path d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z" fill="url(%23grad)"/></svg>');
    background-size: cover;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(7, 206, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.light {
    background: var(--white);
    color: var(--text);
}

.secondary-button {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.secondary-button:hover::before {
    left: 0;
}

.secondary-button:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

.values-preview,
.about-intro,
.pillars-section,
.vision-section,
.community-intro,
.community-benefits,
.community-visual,
.signup-section,
.contact-section,
.map-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text);
}

.value-card p {
    color: var(--text);
    opacity: 0.8;
}

.cta-section {
    text-align: center;
}

.cta-banner {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    opacity: 0.8;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
}

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient);
    color: var(--white);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image,
.vision-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillars-grid {
    display: grid;
    gap: 40px;
}

.pillar-card {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.pillar-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.1;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.pillar-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.pillar-card > p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.pillar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pillar-features li {
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.pillar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-quote blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 32px;
}

.vision-quote p {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
}

.community-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.community-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
}

.benefit-card p {
    line-height: 1.6;
    opacity: 0.8;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.visual-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.visual-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signup-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 40px var(--shadow);
    text-align: center;
}

.signup-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.signup-card > p {
    margin-bottom: 32px;
    line-height: 1.6;
}

.signup-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(0, 101, 121, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(7, 206, 235, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.7;
    text-align: center;
    margin-top: 8px;
}

.form-message {
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    margin-top: 16px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.contact-info > p {
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.method-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

.method-details a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.method-details a:hover {
    opacity: 0.8;
}

.social-section {
    padding: 32px;
    background: rgba(7, 206, 235, 0.05);
    border-radius: 15px;
}

.social-section h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
}

.social-section p {
    margin-bottom: 24px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    stroke: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 40px var(--shadow);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text);
}

.map-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.map-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.map-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .vision-content,
    .community-hero,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .signup-card,
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }
}
