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

:root {
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --background: #1E1F1F;
    --foreground: #E8E3DC;
    --card: #252626;
    --primary: #1B273A;
    --primary-foreground: #E8E3DC;
    --secondary: #00D8B3;
    --secondary-foreground: #1B273A;
    --border: rgba(232, 227, 220, 0.1);
    --input-background: #252626;
    --muted-foreground: #A8A39A;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 31, 31, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 240px;
    height: 40px;
    position: relative;
}

.logo-svg {
    position: absolute;
    right: 0;
    width: 76.53%;
    height: 100%;
}

.logo-wave-svg {
    position: absolute;
    left: 0;
    top: 26.44%;
    width: 18.17%;
    height: 51.75%;
}

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

.nav-link {
    background: none;
    border: none;
    color: rgba(232, 227, 220, 0.7);
    font-family: var(--font-family);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--foreground);
}

.nav-btn {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(0, 216, 179, 0.8);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 39, 58, 0.8),
        rgba(27, 39, 58, 0.6),
        var(--background)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(232, 227, 220, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-btn {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: var(--font-family);
}

.hero-btn:hover {
    background: rgba(0, 216, 179, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Section Styles */
.section {
    padding: 6rem 1.5rem;
    background: var(--background);
}

.section-alt {
    background: var(--card);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.container-small {
    max-width: 768px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-divider {
    width: 5rem;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto 1.5rem;
}

.section-divider-primary {
    width: 5rem;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(232, 227, 220, 0.7);
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: rgba(232, 227, 220, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-foreground);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-desc {
    color: rgba(232, 227, 220, 0.7);
    line-height: 1.7;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-grid-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-desc {
    color: rgba(232, 227, 220, 0.7);
    line-height: 1.7;
}

/* Experience Section */
.experience-section {
    background: rgba(0, 216, 179, 0.3);
    padding: 6rem 1.5rem;
}

.section-title-experience {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.experience-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.experience-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.experience-logo:hover .logo-img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Founder Section */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.founder-image-wrap {
    position: relative;
}

.founder-image {
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-deco {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    border: 4px solid var(--secondary);
    border-radius: 1rem;
    z-index: -1;
}

.founder-content {
    padding: 1rem 0;
}

.founder-name {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.founder-role {
    font-size: 1.25rem;
    color: #00D8B3;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: rgba(232, 227, 220, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.founder-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(232, 227, 220, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.founder-link:hover {
    color: var(--secondary);
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--input-background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 39, 58, 0.2);
}

.form-textarea {
    resize: none;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: none;
    border-radius: 9999px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover:not(:disabled) {
    background: rgba(0, 216, 179, 0.8);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-submit {
        width: 100%;
    }
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    width: 240px;
    height: 40px;
    position: relative;
}

.footer-logo .logo-svg {
    position: absolute;
    right: 0;
    width: 76.53%;
    height: 100%;
    color: var(--primary-foreground);
}

.footer-logo .logo-wave-svg {
    position: absolute;
    left: 0;
    top: 26.44%;
    width: 18.17%;
    height: 51.75%;
    color: var(--primary-foreground);
}

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

.footer-subtitle {
    color: rgba(232, 227, 220, 0.8);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(232, 227, 220, 0.6);
}

.footer-text {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}