/* Tranquil Theme Color Palette */
:root {
    --primary: #4A90A4;
    --secondary: #7B9E87;
    --tertiary: #8B9DC3;
    --deep-blue: #2C5F6F;
    --light-bg: #f8fafb;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6a6a6a;
    --white: #ffffff;
    --shadow: rgba(74, 144, 164, 0.1);
    --shadow-hover: rgba(74, 144, 164, 0.2);
    color-scheme: light only;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(74, 144, 164, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 3rem;
    max-width: 100%;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--deep-blue);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.02);
    color: var(--primary);
}

.logo-icon {
    font-size: 2.2rem;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 40;
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 60%;
    height: 110%;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.08) 0%, rgba(139, 157, 195, 0.08) 100%);
    transform: skewX(-12deg);
    z-index: 0;
    max-height: 100vh;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 10;
    max-width: 700px;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--deep-blue);
    margin-bottom: 2.5rem;
    letter-spacing: -3.5px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--medium-text);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 550px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 3rem;
}

.cta-badge {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 40px rgba(74, 144, 164, 0.25);
    position: relative;
    overflow: hidden;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(74, 144, 164, 0.25);
    }
    50% {
        box-shadow: 0 10px 50px rgba(74, 144, 164, 0.35);
    }
}

/* Hero Visual - Modern Abstract */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
    position: relative;
}

.visual-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    max-height: 500px;
}

/* Fade In Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-text);
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    left: 0;
    top: -80px;
    width: 100%;
    height: 80px;
    background: var(--white);
    transform: skewY(-2deg);
    transform-origin: left;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-card:nth-child(2) {
    transform: translateY(40px);
}

.about-card:nth-child(2):hover {
    transform: translateY(28px) scale(1.02);
}

.about-card {
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 164, 0.15);
    box-shadow: 0 8px 32px rgba(74, 144, 164, 0.12);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 72px rgba(74, 144, 164, 0.25);
    border-color: rgba(74, 144, 164, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-card p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Vision Section */
.vision {
    background: var(--light-bg);
    position: relative;
    margin-top: -80px;
    padding-top: 12rem !important;
}

.vision::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: var(--light-bg);
    transform: skewY(2deg);
    transform-origin: left;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text {
    text-align: center;
}

.vision-statement {
    font-size: 1.35rem;
    color: var(--medium-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 164, 0.08);
}

.value-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(74, 144, 164, 0.12);
    border-color: rgba(74, 144, 164, 0.15);
}

.value-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    border-radius: 50%;
    flex-shrink: 0;
}

.value-item span:last-child {
    color: var(--dark-text);
    font-weight: 500;
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary) 50%, var(--tertiary) 100%);
    color: white;
    text-align: center;
    position: relative;
    padding: 10rem 0 !important;
}

.coming-soon::before {
    content: '';
    position: absolute;
    left: 0;
    top: -80px;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-blue), var(--primary));
    transform: skewY(-2deg);
    transform-origin: left;
}

.coming-soon-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.coming-soon-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

.coming-soon-hint {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: var(--white);
    position: relative;
    margin-top: -80px;
    padding-top: 12rem !important;
}

.contact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(2deg);
    transform-origin: left;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.35rem;
    color: var(--medium-text);
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 164, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--tertiary));
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    border-color: rgba(74, 144, 164, 0.15);
    box-shadow: 0 8px 30px rgba(74, 144, 164, 0.12);
    transform: translateY(-4px);
}

.contact-label {
    font-weight: 700;
    color: var(--medium-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.contact-item a:hover {
    color: var(--tertiary);
    transform: translateX(4px);
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.75rem;
    opacity: 0.95;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-tagline {
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr 0.7fr;
        gap: 2rem;
    }

    .hero::before {
        transform: skewX(-8deg);
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .navbar .container {
        padding: 1.5rem 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 280px;
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .hero-tagline {
        max-width: 250px;
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-badge {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .hero-visual {
        height: auto;
    }

    .visual-container {
        width: 100%;
        height: auto;
        min-height: 250px;
    }

    .hero-image {
        max-width: 250px;
        max-height: 250px;
    }

    section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-card:nth-child(2) {
        transform: translateY(0);
    }

    .about::before,
    .vision::before,
    .coming-soon::before,
    .contact::before {
        display: none;
    }

    .vision,
    .contact {
        margin-top: 0;
        padding-top: 6rem !important;
    }

    .coming-soon {
        padding: 6rem 0 !important;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 0.6fr;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        max-width: 240px;
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        max-width: 220px;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-badge {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    .hero-image {
        max-width: 200px;
        max-height: 200px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-values {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 0;
    }

    .coming-soon-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding: 1rem;
    }

    .hero .container {
        grid-template-columns: 1fr 0.5fr;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        max-width: 180px;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        max-width: 160px;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-image {
        max-width: 150px;
        max-height: 150px;
    }

    .visual-container {
        min-height: 150px;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .coming-soon-content h2 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 0;
    }
}
