@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #3B82F6;
    --accent-dark: #2563EB;
    --accent-soft: rgba(59, 130, 246, 0.1);
    --text-main: #64748B;
    --text-dark: #0F172A;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border: #F1F5F9;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 40px 80px -20px rgba(15, 23, 42, 0.1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary);
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    margin-bottom: 5rem;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-title p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Glass & Buttons */
.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-slow);
}

header.scrolled {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

header.scrolled .logo {
    color: var(--primary);
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

header.scrolled .nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover {
    color: white;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary);
    overflow: hidden;
    color: white;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    color: white;
}

.hero h1 span {
    background: linear-gradient(to right, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-inline: auto;
}

/* About Card */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    color: var(--text-main);
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-soft);
    border-radius: 20px;
    z-index: -1;
}

.about-img-main {
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.15);
}

/* Partner Cards */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 950px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.partner-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-soft);
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-slow);
}

.partner-card:hover img {
    transform: scale(1.05);
}

.partner-info {
    text-align: center;
}

.partner-role {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.partner-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Message Section */
.quote-section {
    background: var(--primary);
    border-radius: 50px;
    margin: 0 2rem;
    color: white;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-family: 'Outfit', sans-serif;
}

/* Strategy Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 40px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-fast);
}

.team-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
    transform: translateY(-8px);
}

.team-thumb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 6px solid var(--bg-light);
    box-shadow: var(--shadow-soft);
}

.team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Services */
.services-main {
    background: var(--primary);
    border-radius: 0 0 100px 100px;
}

.services-main h2 {
    color: white !important;
}

.services-main .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-main .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 32px;
    transition: var(--transition-slow);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.service-card i {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Choice Cards */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.choice-card {
    padding: 2.5rem;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.choice-card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-5px);
}

.choice-card h3 {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.choice-card h3 i {
    color: var(--accent);
}

/* Contact */
.contact-container {
    background: var(--primary);
    border-radius: 50px;
    padding: 50px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-container h2 {
    color: white !important;
}

.contact-container .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 32px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-input {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

/* Responsive */
@media (max-width: 1024px) {

    .about-grid,
    .partners-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2.5rem;
        gap: 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        color: inherit;
        font-size: 1.5rem;
        z-index: 1001;
    }

    header.scrolled .mobile-menu-btn {
        color: var(--text-dark);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .contact-container {
        padding: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .nav-cta {
        display: none;
    }
}

/* Image Aspect Ratio Control */
.team-thumb img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-thumb {
    border-radius: 50% !important;
}

/* Footer Styles Redesign */
.footer-main {
    padding: 100px 0 50px;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col ul {
    display: grid;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}