@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #ed7d31;
    --secondary: #000000;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}


body {
    font-family: Rockwell, serif;
    line-height: 1.6;
    color: var(--secondary);
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

h1,
h2,
h3,
.btn {
    font-family: 'American Captain', sans-serif;
    letter-spacing: 1px;
}

p {
    font-family: "Inter", sans-serif;
}

.navigation {
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    font-family: "Inter", sans-serif;
}

.logo {
    width: 100px;
    height: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 16px;
}

.nav-list a {
    color: black;
    text-decoration: none;
}

.contact-btn {
    background-color: black;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
}

.external-link {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.external-link:hover {
    background-color: transparent;
    color: var(--primary) !important;
    border-color: var(--primary);
}


.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.4);
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    background: linear-gradient(135deg, #e65a1a 0%, #d14500 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.5);
}

.lang-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.flag {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.lang-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
}

.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content .texts {
    color: var(--primary);
    margin-bottom: 0;
    position: relative;
    padding: 0 40px;
    z-index: 1;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.hero-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.4);
}

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

.hero-content .texts:after {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    height: 100%;
    width: calc(100% + 10px);
    background-color: black;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    z-index: -1;
}

.texts h1 {
    font-size: 75px;
    margin: 0;
}

.texts p {
    margin-top: -20px;
    color: white;
}

.hero-content .description {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin-top: 0;
}

/* Who are we section */
.who-are-we {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.who-are-we .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* SVG Decorative Elements */
.svg-decoration {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.svg-decoration.top-left {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.svg-decoration.top-right {
    top: 40px;
    right: 30px;
    animation-delay: 2s;
}

.svg-decoration.bottom-left {
    bottom: 30px;
    left: 40px;
    animation-delay: 4s;
}

.svg-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-8px) scale(1.05) rotate(2deg); }
}

/* Who We Content Layout */
.who-we-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.who-we-text {
    text-align: left;
}

.who-we-text h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.who-we-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.who-we-text .intro {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.who-we-text .description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    max-width: 450px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    z-index: -1;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.contact-details {
    text-align: left;
    max-width: 350px;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--secondary);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.contact-details a:hover {
    color: var(--secondary);
    background-color: var(--primary);
    color: var(--white);
}

/* Visual Elements */
.who-we-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.3) 100%);
    top: 20px;
    right: 20px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.square-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(0, 0, 0, 0.3) 100%);
    transform: rotate(45deg);
    bottom: 40px;
    left: 30px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.triangle-element {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--primary);
    opacity: 0.6;
    top: 60px;
    left: 50px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Companies Section */
.companies {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.companies::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.companies::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.companies .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.companies h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.companies h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.companies-subtitle {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.companies-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.companies-track {
    display: flex;
    animation: scroll 60s linear infinite;
    gap: 60px;
    align-items: center;
}

.company-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.company-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}

/* Pause animation on hover */
.companies-slider:hover .companies-track {
    animation-play-state: paused;
}

/* Mission section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.mission::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
}

.mission .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.06;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.mission .container::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 7s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.mission .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.mission h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.mission .mission-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Practices section */
.practices {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.practices::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.practices::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 5s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.practices .container::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.07;
    animation: float 9s ease-in-out infinite;
    animation-delay: 3s;
}

.practices .container::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.06;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: 4s;
}

.practices .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.practices h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.practices h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.practices-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.practices-showcase {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.practice-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    align-items: stretch;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.6s ease;
}

.practice-card:hover::before {
    left: 100%;
}

.practice-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.practice-number {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.8) 100%);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    font-family: 'American Captain', sans-serif;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    position: relative;
}

.practice-number::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--primary);
}

.practice-content {
    padding: 30px 35px;
    flex: 1;
}

.practice-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.practice-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    margin: 0;
}

.practice-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.3) 100%);
    border-radius: 0 20px 0 60px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.practice-card:hover .practice-accent {
    opacity: 0.3;
}





/* Team section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.team::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite reverse;
    animation-delay: 1.5s;
}

.team .container::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 11s ease-in-out infinite;
    animation-delay: 2.5s;
}

.team .container::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 10%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.07;
    animation: float 8s ease-in-out infinite reverse;
    animation-delay: 3.5s;
}

.team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.team h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.team-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -50px;
    transition: transform 0.4s ease;
}


#move-bottom {
    object-position: top;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 125, 49, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.linkedin-link {
    background: var(--white);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.linkedin-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.member-info {
    padding: 15px 15px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.member-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.mobile-linkedin-btn {
    display: none;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
}

.mobile-linkedin-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mission Section */
.mission-section .mission-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(237, 125, 49, 0.1);
    position: relative;
    overflow: hidden;
}

.pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.6s ease;
}

.pillar:hover::after {
    left: 100%;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.5s ease;
}

.pillar:hover::before {
    left: 100%;
}

.pillar:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}



.pillar h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.pillar h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.pillar p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--secondary);
    margin: 0;
    text-align: center;
}

/* Call to Action */
.call-to-action {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .hero-content .texts h1 {
        font-size: 48px;
    }
    
    .hero-content .texts p {
        font-size: 20px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .who-we-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .who-we-text {
        text-align: center;
    }
    
    .who-we-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .who-we-visual {
        height: 300px;
        display: none;
    }
    
    .visual-element {
        width: 250px;
        height: 250px;
    }
    
    .who-are-we h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2 {
        font-size: 36px;
    }
    
    .who-we-text .intro {
        font-size: 20px;
    }
    
    .mission .mission-intro,
    .practices-intro,
    .team-intro,
    .relationships-intro {
        font-size: 18px;
    }
    
    .mission-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .practices-showcase {
        max-width: 800px;
        gap: 20px;
    }
    
    .community-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .community-card {
        padding: 35px 25px;
    }
    
    .community-content h3 {
        font-size: 22px;
    }
    
    .community-content p {
        font-size: 16px;
    }
    
    .community-btn {
        padding: 13px 28px;
        font-size: 15px;
        min-width: 150px;
    }
    
    .practice-number {
        font-size: 28px;
        padding: 25px 20px;
        min-width: 80px;
    }
    
    .practice-content {
        padding: 25px 30px;
    }
    
    .practice-content h3 {
        font-size: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .member-photo {
        height: 250px;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .history-text {
        text-align: center;
    }
    
    .history-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    
    .milestone-cards {
        gap: 30px;
        max-width: 500px;
    }
    
    .milestone-card {
        padding: 30px 25px;
    }
    
    .milestone-year {
        font-size: 28px;
    }
    
    .milestone-card h4 {
        font-size: 20px;
    }
}

/* Community Section - Mobile Layout */
@media (max-width: 600px) {
    .community-cards {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 500px;
    }
    
    .community-card {
        padding: 30px 25px;
    }
    
    .community-content h3 {
        font-size: 20px;
    }
    
    .community-content p {
        font-size: 15px;
    }
    
    .community-btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .community-intro {
        font-size: 18px;
    }
}

/* Mobile Navigation */
@media (max-width: 1230px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content .texts {
        padding: 0 20px;
    }
    
    .navigation {
        padding: 15px 20px;
    }
    
    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 1000;
        padding: 20px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list a {
        font-size: 20px;
        font-weight: 600;
    }
    
    .contact-btn {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .lang-btn {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
        background: var(--primary);
    }
    
    .flag {
        font-size: 20px;
    }
    
    .lang-text {
        font-size: 14px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--secondary);
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--secondary);
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .who-are-we,
    .mission,
    .practices,
    .team,
    .relationships,
    .community,
    .companies {
        padding: 60px 0;
    }
    
    .svg-decoration {
        display: none;
    }
    
    .mission::before,
    .mission::after,
    .mission .container::before,
    .mission .container::after,
    .practices::before,
    .practices::after,
    .practices .container::before,
    .practices .container::after,
    .team::before,
    .team::after,
    .team .container::before,
    .team .container::after,
    .relationships::before,
    .relationships::after,
    .relationships .container::before,
    .relationships .container::after,
    .community::before,
    .community::after,
    .community .container::before,
    .community .container::after,
    .companies::before,
    .companies::after {
        display: none;
    }
    
    .who-we-visual {
        display: none;
    }
    
    .who-we-text h2,
    .mission h2,
    .practices h2,
    .team h2,
    .relationships-text h2,
    .community h2,
    .companies h2 {
        font-size: 30px;
    }
    
    .who-we-text .intro {
        font-size: 18px;
    }
    
    .relationships-intro {
        font-size: 18px;
    }
    
    .relationships-message p {
        font-size: 16px;
    }
    
    .join-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .community-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .community-card {
        padding: 30px 25px;
    }
    
    .community-content h3 {
        font-size: 20px;
    }
    
    .community-content p {
        font-size: 15px;
    }
    
    .community-btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .community-intro {
        font-size: 18px;
    }
    
    .contact-info {
        padding: 25px;
        margin: 25px 0;
    }
    
    .companies-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .companies-slider {
        padding: 30px 15px;
        max-width: 100%;
    }
    
    .companies-track {
        gap: 40px;
    }
    
    .company-logo {
        height: 60px;
    }
    
    .company-logo img {
        max-height: 45px;
        max-width: 120px;
    }
    
    .who-we-visual {
        height: 250px;
    }
    
    .visual-element {
        width: 200px;
        height: 200px;
    }
    
    .circle-element {
        width: 80px;
        height: 80px;
    }
    
    .square-element {
        width: 60px;
        height: 60px;
    }
    
    .triangle-element {
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 60px solid var(--primary);
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .practices-showcase {
        max-width: 100%;
        gap: 15px;
    }
    
    .practice-card {
        flex-direction: column;
    }
    
    .practice-number {
        font-size: 24px;
        padding: 20px;
        min-width: auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .practice-number::after {
        display: none;
    }
    
    .practice-content {
        padding: 20px 25px;
    }
    
    .practice-content h3 {
        font-size: 18px;
    }
    
    .practice-content p {
        font-size: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .member-photo {
        height: 200px;
    }
    
    .member-info {
        padding: 12px 10px;
    }
    
    .member-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .member-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .mobile-linkedin-btn {
        display: inline-block;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .history-content {
        gap: 40px;
    }
    
    .history-text p {
        font-size: 16px;
    }
    
    .milestone-cards {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }
    
    .milestone-card {
        padding: 25px 20px;
    }
    
    .milestone-year {
        font-size: 24px;
    }
    
    .milestone-card h4 {
        font-size: 18px;
    }
    
    .milestone-card p {
        font-size: 14px;
    }
    
    .milestone-arrow {
        transform: rotate(90deg);
    }
    
    .pillar {
        padding: 20px;
    }
    
    .pillar h3 {
        font-size: 18px;
    }
    
    .call-to-action {
        font-size: 16px;
        padding: 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-content .texts {
        padding: 0 15px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-content .texts h1 {
        font-size: 32px;
        line-height: 2.2;
    }
    
    .hero-content .texts p {
        font-size: 16px;
    }
    
    .who-are-we,
    .mission,
    .practices,
    .history,
    .team,
    .relationships,
    .community,
    .companies {
        padding: 40px 0;
    }
    
    .who-we-text h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2,
    .community h2,
    .companies h2 {
        font-size: 26px;
    }
    
    .who-we-text .intro {
        font-size: 16px;
    }
    
    .mission .mission-intro,
    .practices-intro,
    .team-intro,
    .relationships-intro {
        font-size: 16px;
    }
    
    .contact-info {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .who-we-visual {
        height: 200px;
    }
    
    .visual-element {
        width: 150px;
        height: 150px;
    }
    
    .circle-element {
        width: 60px;
        height: 60px;
    }
    
    .square-element {
        width: 45px;
        height: 45px;
    }
    
    .triangle-element {
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 45px solid var(--primary);
    }
    
    .pillar {
        padding: 15px;
    }
    
    .pillar h3 {
        font-size: 16px;
    }
    
    .pillar p {
        font-size: 14px;
    }
    
    .practice-card {
        margin-bottom: 15px;
    }
    
    .practice-number {
        font-size: 20px;
        padding: 15px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .practice-content {
        padding: 15px 20px;
    }
    
    .practice-content h3 {
        font-size: 16px;
    }
    
    .practice-content p {
        font-size: 14px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        justify-items: center;
    }
    
    .member-photo {
        height: 320px;
        width: 320px;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .member-photo img {
        object-position: center -30px;
        border-radius: 15px;
    }
    
    .member-info {
        padding: 10px 8px;
    }
    
    .member-info h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .member-description {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .mobile-linkedin-btn {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .history-text p {
        font-size: 14px;
    }
    
    
    .milestone-card {
        padding: 20px 15px;
    }
    
    .milestone-year {
        font-size: 20px;
    }
    
    .milestone-card h4 {
        font-size: 16px;
    }
    
    .milestone-card p {
        font-size: 13px;
    }
    
    .call-to-action {
        font-size: 14px;
        padding: 12px;
    }
    
    .relationships-message p {
        font-size: 14px;
    }
    
    .join-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .community-cards {
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .community-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .community-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .community-icon i {
        font-size: 24px;
    }
    
    .community-content h3 {
        font-size: 18px;
    }
    
    .community-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .community-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .community-intro {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .footer {
        padding: 40px 0 15px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section p {
        font-size: 15px;
    }
    
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page h1 {
        font-size: 36px;
    }
    
    .contact-intro {
        font-size: 18px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-content .texts {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content .texts h1 {
        font-size: 28px;
    }
    
    .hero-content .texts p {
        font-size: 14px;
    }
    
    .who-we-text h2,
    .mission h2,
    .practices h2,
    .history-text h2,
    .team h2,
    .relationships-text h2,
    .community h2 {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        justify-items: center;
    }
    
    .member-photo {
        height: 200px;
        width: 200px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .member-photo img {
        object-position: center -20px;
        border-radius: 12px;
    }
    
    .practice-card {
        margin-bottom: 12px;
    }
    
    .pillar {
        padding: 12px;
    }
    
    .footer {
        padding: 30px 0 10px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page h1 {
        font-size: 30px;
    }
    
    .contact-intro {
        font-size: 16px;
    }
    
    .contact-details-grid {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .community-cards {
        gap: 15px;
        padding: 0 5px;
    }
    
    .community-card {
        padding: 20px 15px;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .community-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .community-icon i {
        font-size: 20px;
    }
    
    .community-content h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .community-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .community-btn {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 110px;
    }
    
    .companies-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .companies-slider {
        padding: 20px 10px;
    }
    
    .companies-track {
        gap: 30px;
    }
    
    .company-logo {
        height: 50px;
    }
    
    .company-logo img {
        max-height: 35px;
        max-width: 100px;
    }
    
    .community-intro {
        font-size: 14px;
        padding: 0 5px;
        margin-bottom: 40px;
    }
    
    .contact-form-section {
        margin-top: 60px;
    }
    
    .contact-form-section h3 {
        font-size: 24px;
    }
    
    .contact-form-section p {
        font-size: 16px;
    }
    
    .typeform-container {
        padding: 15px;
    }
    
    .language-switch {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .error-page {
        padding: 60px 0;
    }
    
    .error-number {
        font-size: 80px;
    }
    
    .error-page h1 {
        font-size: 28px;
    }
    
    .error-message {
        font-size: 18px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 200px;
        text-align: center;
    }
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.community::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite reverse;
}

.community .container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1.5s;
}

.community .container::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 5%;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.07;
    animation: float 7s ease-in-out infinite reverse;
    animation-delay: 2.5s;
}

.community .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.community h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.community h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.community-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.community-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    text-align: center;
}



.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 125, 49, 0.1), transparent);
    transition: left 0.5s ease;
}

.community-card:hover::before {
    left: 100%;
}

.community-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-icon i {
    font-size: 32px;
}

.community-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(237, 125, 49, 0.4);
}

.community-card:hover .community-icon::before {
    transform: rotate(225deg);
}

.community-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.community-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 30px;
}

.community-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.slack-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #d14500 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(237, 125, 49, 0.4);
    position: relative;
    overflow: hidden;
}



.slack-btn:hover {
    background: linear-gradient(135deg, #d14500 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.4);
}

.meetup-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}



.meetup-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #d14500 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.4);
}

.community-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.community-btn:hover::before {
    left: 100%;
}

/* Relationships Section */
.relationships {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.relationships::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2s;
}

.relationships::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 7s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.relationships .container::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 8%;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.09;
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

.relationships .container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 12%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 9s ease-in-out infinite reverse;
    animation-delay: 5s;
}

.relationships .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relationships-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.relationships-text h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.relationships-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.relationships-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
}

.relationships-description {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 40px;
}

.relationships-poster {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.relationships-poster:hover {
    transform: translateY(-5px);
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
}

.relationships-message {
    max-width: 700px;
    margin: 0 auto;
}

.relationships-message p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 25px;
}

.join-button-container {
    margin-top: 40px;
}

.join-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.3);
    font-family: "Inter", sans-serif;
}

.join-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-section strong {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Page */
.contact-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.contact-page h1 {
    font-size: 48px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.contact-page h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-intro {
    font-size: 20px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-card p {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary);
}

.contact-card strong {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 60px;
    margin-bottom: 80px;
    text-align: center;
}

.contact-form-section h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.contact-form-section p {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.language-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.lang-btn {
    background: var(--primary);
    color: var(--white);
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
}

.lang-btn:hover {
    background: #d14500;
    color: var(--white);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.3);
}

.typeform-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.typeform-embed {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.typeform-embed.active {
    display: block;
    opacity: 1;
}

/* 404 Error Page */
.error-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.error-number {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Inter", sans-serif;
}

.error-page h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
}

.error-message {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.error-description {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.error-btn.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.3);
}

.error-btn.primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.error-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.error-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.error-help {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.error-help h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
}

.error-help p {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}

.error-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-links li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--secondary);
    font-family: "Inter", sans-serif;
}

.error-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.error-links a:hover {
    color: var(--secondary);
}

/* Contact Page Styles */
.contact-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-page h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.contact-form-section h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-section p {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.typeform-container {
    margin-top: 30px;
}

.typeform-embed {
    min-height: 500px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 1230px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page h1 {
        font-size: 36px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
}

.mission-cta {
    text-align: center;
    margin-top: 40px;
}

.mission-cta .cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(237, 125, 49, 0.3);
    font-family: "Inter", sans-serif;
}



/* Vision Section */
.vision {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.vision::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.vision .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.vision h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.vision h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.vision-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.vision-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    padding: 30px 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.3s; }
.timeline-item:nth-child(2) { animation-delay: 0.5s; }
.timeline-item:nth-child(3) { animation-delay: 0.7s; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(237, 125, 49, 0.3) 50%, var(--primary) 100%);
    border-radius: 2px;
}


.timeline-period {
    background: var(--white);
    color: var(--primary);
    padding: 20px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid var(--primary);
    position: relative;
    z-index: 3;
}

.timeline-period::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid var(--primary);
}

.timeline-content {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 125, 49, 0.02) 0%, rgba(237, 125, 49, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-left-color: var(--secondary);
}

.timeline-content h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.vision-goals {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-goals li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 18px;
    padding-left: 0;
    position: relative;
    font-weight: 500;
}

/* Principles Section */
.principles {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.principles::before {
    content: '';
    position: absolute;
    top: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2s;
}

.principles::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 7s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.principles .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.principles h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.principles h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.principles-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle-card {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
    transform-origin: center;
}

.principle-card:nth-child(even) {
    transform: rotate(2deg);
}

.principle-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.principle-yellow {
    background: #ffeb3b;
    border: 3px solid #fbc02d;
}

.principle-orange {
    background: #ff9800;
    border: 3px solid #f57c00;
}

.principle-green {
    background: #8bc34a;
    border: 3px solid #689f38;
}

.principle-content {
    padding: 25px 20px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.principle-content h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.principle-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary);
    margin: 0;
    font-weight: 500;
}

/* Bold Steps Section */
.bold-steps {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.bold-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.bold-steps::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--secondary), transparent);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: 2.5s;
}

.bold-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.bold-steps h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.bold-steps h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.bold-steps-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.bold-steps-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.central-vision {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(237, 125, 49, 0.9) 100%);
    color: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(237, 125, 49, 0.3);
    border: 3px solid var(--white);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.central-vision h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.central-vision p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.bold-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.step-card:nth-child(1) { animation-delay: 0.4s; }
.step-card:nth-child(2) { animation-delay: 0.5s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.7s; }

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary);
}

.step-card h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.outcomes-section {
    margin-bottom: 40px;
}

.outcomes-section h3 {
    font-size: 28px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.outcome-card {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.outcome-card:nth-child(1) { animation-delay: 0.8s; }
.outcome-card:nth-child(2) { animation-delay: 0.9s; }
.outcome-card:nth-child(3) { animation-delay: 1.0s; }
.outcome-card:nth-child(4) { animation-delay: 1.1s; }

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.outcome-card h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunities-section h3 {
    font-size: 28px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.opportunity-card {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.opportunity-card:nth-child(1) { animation-delay: 1.2s; }
.opportunity-card:nth-child(2) { animation-delay: 1.3s; }

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4);
}

.opportunity-card h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .vision h2,
    .principles h2,
    .bold-steps h2 {
        font-size: 36px;
    }
    
    .vision-intro,
    .principles-intro,
    .bold-steps-intro {
        font-size: 18px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-item::before,
    .timeline-item::after {
        display: none;
    }
    
    .timeline-period {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .timeline-period::before {
        display: none;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .bold-steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .outcomes-grid,
    .opportunities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .central-vision {
        padding: 30px 25px;
    }
    
    .central-vision h3 {
        font-size: 20px;
    }
    
    .central-vision p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .vision,
    .principles,
    .bold-steps {
        padding: 60px 0;
    }
    
    .vision h2,
    .principles h2,
    .bold-steps h2 {
        font-size: 30px;
    }
    
    .vision-intro,
    .principles-intro,
    .bold-steps-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .timeline-period {
        padding: 15px 20px;
        font-size: 16px;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .timeline-content {
        padding: 25px 20px;
        margin: 0;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .vision-goals li {
        font-size: 15px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principle-card {
        transform: rotate(0deg) !important;
    }
    
    .principle-card:hover {
        transform: scale(1.02) !important;
    }
    
    .principle-content {
        padding: 20px 15px;
    }
    
    .principle-content h3 {
        font-size: 18px;
    }
    
    .principle-content p {
        font-size: 13px;
    }
    
    .bold-steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .outcomes-grid,
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .central-vision {
        padding: 25px 20px;
    }
    
    .central-vision h3 {
        font-size: 18px;
    }
    
    .central-vision p {
        font-size: 14px;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-card h4 {
        font-size: 16px;
    }
    
    .outcome-card,
    .opportunity-card {
        padding: 20px 15px;
    }
    
    .outcome-card h4,
    .opportunity-card h4 {
        font-size: 14px;
    }
    
    .outcomes-section h3,
    .opportunities-section h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .vision,
    .principles,
    .bold-steps {
        padding: 40px 0;
    }
    
    .vision h2,
    .principles h2,
    .bold-steps h2 {
        font-size: 26px;
    }
    
    .vision-intro,
    .principles-intro,
    .bold-steps-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 0;
    }
    
    .timeline-period {
        padding: 12px 15px;
        font-size: 14px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .timeline-content {
        padding: 20px 15px;
        margin: 0;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .vision-goals li {
        font-size: 14px;
    }
    
    .principle-content {
        padding: 15px 12px;
    }
    
    .principle-content h3 {
        font-size: 18px;
    }
    
    .principle-content p {
        font-size: 12px;
    }
    
    .central-vision {
        padding: 20px 15px;
    }
    
    .central-vision h3 {
        font-size: 16px;
    }
    
    .central-vision p {
        font-size: 13px;
    }
    
    .step-card {
        padding: 15px 12px;
    }
    
    .step-card h4 {
        font-size: 14px;
    }
    
    .outcome-card,
    .opportunity-card {
        padding: 15px 12px;
    }
    
    .outcome-card h4,
    .opportunity-card h4 {
        font-size: 13px;
    }
    
    .outcomes-section h3,
    .opportunities-section h3 {
        font-size: 18px;
    }
}