/* style.css */

/* Reset & Base */
html {
    font-size: 1rem; /* 10px base for rem calculations */
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'K2D', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;

background: #E0E9FF;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 72, 0.95);
    color: white;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 120rem;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'K2D', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie.decline {
    background: transparent;
    color: white;
    border: 0.1rem solid white;
}

.btn-cookie:hover {
    transform: translateY(-0.2rem);
}

/* Header */
.header {
    background: rgb(224, 233, 255);
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.nav-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2348;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a2348;
}

.nav-link.contact-btn {
    background: transparent;
    border: 0.2rem solid #1a2348;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link.contact-btn:hover {
    background: #1a2348;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.bar {
    width: 2.5rem;
    height: 0.3rem;
    background: #1a2348;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background:  #0C1D48;
    color: white;
    padding: 10rem 0 6rem;
    margin-top: 8rem;
    border-radius: 2rem;
    margin: 8rem 2rem 0;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1.2;
    min-width: 35rem;
    max-width: 55rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    line-height: 1.55;
    opacity: 0.9;
    font-weight: 400;
}

.hero-text p:last-of-type {
    margin-bottom: 3rem;
}

.cta-btn {
    background: white;
    color: #1a2348;
    border: none;
    padding: 1.4rem 1.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0.6rem;
    cursor: pointer;
    font-family: 'K2D', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn:hover {
    background: #f5f5f5;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(255, 255, 255, 0.2);
}

.hero-form {
    flex: 1;
    min-width: 32rem;
    max-width: 40rem;
    /*background: rgba(255, 255, 255, 0.08);*/
    /*padding: 3rem 2.5rem;*/
    border-radius: 1.2rem;
    backdrop-filter: blur(1rem);
    /*border: 0.1rem solid rgba(255, 255, 255, 0.1);*/
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-form input,
.hero-form textarea {
    padding: 1.4rem 1.6rem;
   border-radius: 8px;
border: 2px solid #FFF;
opacity: 0.6;
background: none;
    font-family: 'K2D', sans-serif;
    font-size: 1.4rem;


    transition: all 0.3s ease;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    background: white;
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.3rem rgba(76, 175, 80, 0.1);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #666;
    font-weight: 400;
}

.hero-form textarea {
    resize: vertical;
    min-height: 8rem;
    font-family: 'K2D', sans-serif;
}

.submit-btn {
    background: white;
    color: black;
    border: none;
    padding: 1.6rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 0.6rem;
    cursor: pointer;
    font-family: 'K2D', sans-serif;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: #45a049;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(76, 175, 80, 0.3);
}

/* Investment Section */
.investment {
    padding: 8rem 0;
      background: #E0E9FF;
}

.investment-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.investment-image {
    flex: 1;
    min-width: 30rem;
}

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.investment-text {
    flex: 1;
    min-width: 30rem;
}

.investment-text h2 {

    font-weight: 700;

    margin-bottom: 2rem;

    color: #FFF;

font-size: 32px;
font-style: normal;

line-height: normal;
text-transform: uppercase;
}

.investment-text p {

    margin-bottom: 2rem;

    color: #FFF;

font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 18px */
}

/* Strategies Section */
.strategies {
    padding: 8rem 0;

background: #E0E9FF;
    color: white;
}

.strategies-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.strategies-text {
    flex: 1;
    min-width: 30rem;
}

.strategies-text h2 {

    font-weight: 700;
    margin-bottom: 2rem;

    color: #FFF;

font-size: 32px;
font-style: normal;

line-height: normal;
text-transform: uppercase;
}

.strategies-text p {

    margin-bottom: 2rem;

    color: #FFF;

font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 18px */
}

.strategies-image {
    flex: 1;
    min-width: 30rem;
}

.strategies-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
       background: #E0E9FF;
}

.services-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a2348;
    text-align: center;
    margin-bottom: 2rem;
}

.services-description {

    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;

    color: #000;

font-size: 12px;
font-style: normal;
    text-align: left;
font-weight: 400;
line-height: 150%; /* 18px */
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {

    padding: 3rem;
   border-radius: 32px;
background: #0C1D48;
    flex: 1;
    min-width: 25rem;
    max-width: 50rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-card h3 {



    margin-bottom: 1.5rem;
    color: #FFF;

font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.service-card p {


    margin-bottom: 2rem;

    color: #FFF;

font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 18px */
}

.service-feature {
    font-size: 1.4rem;
    color: #4CAF50;
    font-weight: 600;
}

/* Success Page */
.success-page {
    padding: 15rem 0 10rem;
    background: #f8f9fa;
    text-align: center;
}

.success-content {
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    font-size: 8rem;
    margin-bottom: 2rem;
}

.success-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a2348;
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    /*background: #1a2348;*/
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
}

.footer-brand address {
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-info span {
    font-size: 1.4rem;
    color: #ccc;
}

.footer-legal {
    border-top: 0.1rem solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.copyright {
    font-size: 1.2rem;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 0.875rem; /* 14px base for mobile */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 8rem;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 1rem 2.7rem rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(0.6rem) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-0.6rem) rotate(-45deg);
    }

    .hero {
        padding: 6rem 0 4rem;
        margin: 8rem 1rem 0;
        border-radius: 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text {
        min-width: auto;
        max-width: none;
    }

    .hero-text h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .hero-text p {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-text p:last-of-type {
        margin-bottom: 2.5rem;
    }

    .hero-form {
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 2.5rem 2rem;
    }

    .investment-content,
    .strategies-content {
        flex-direction: column;
        gap: 4rem;
    }

    .strategies-content {
        flex-direction: column-reverse;
    }

    .investment-image,
    .investment-text,
    .strategies-image,
    .strategies-text {
        min-width: auto;
        width: 100%;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: auto;
        max-width: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1.5rem 1rem;
    }

    .hero {
        margin: 8rem 0.5rem 0;
        padding: 4rem 0 3rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-text p {
        font-size: 1.3rem;
    }

    .hero-form {
        padding: 2rem 1.5rem;
    }

    .hero-form input,
    .hero-form textarea {
        padding: 1.2rem 1.4rem;
        font-size: 1.3rem;
    }

    .submit-btn {
        padding: 1.4rem 1.8rem;
        font-size: 1.3rem;
    }

    .cta-btn {
        padding: 1.2rem 1.4rem;
        font-size: 0.7rem;
    }

    .services-title {
        font-size: 2.4rem;
    }

    .investment-text h2,
    .strategies-text h2 {
        font-size: 2.2rem;
    }

    .success-content h1 {
        font-size: 2.4rem;
    }
}