:root {
--color-dark: #ffffff;
--color-magenta: #A62F61;
--color-magenta-light: #C4447A;
--color-magenta-dark: #7E1E48;
--color-light: #F0EDE8;
--color-white: #323232;
--color-gray: #8A8886;
--color-gray-light: #C8C5C0;
--font-display: 'Playfair Display', serif;
--font-body: 'Montserrat', sans-serif;
--sidebar-width: 90px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
scroll-padding-left: calc(var(--sidebar-width) + 20px);
}

body {
font-family: var(--font-body);
background-color: var(--color-dark);
/* color: var(--color-light); */
overflow-x: hidden;
}

.nav-sidebar {
position: fixed;
top: 0;
left: 0;
width: var(--sidebar-width);
height: 100vh;
background: var(--color-dark);
border-right: 1px solid rgba(166, 47, 97, 0.15);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 1.5rem 0;
z-index: 1030;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand {
width: 100%;
padding: 0 0.75rem;
display: flex;
justify-content: center;
}

.nav-logo {
width: 60px;
height: auto;
object-fit: contain;
filter: brightness(1.1);
}

.nav-links {
display: flex;
flex-direction: column;
gap: 0.25rem;
width: 100%;
padding: 0 0.5rem;
}

.nav-link {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0.875rem 0.25rem;
color: var(--color-gray);
text-decoration: none;
border-radius: 12px;
transition: all 0.3s ease;
font-size: 0.6rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
gap: 0.35rem;
}

.nav-link i {
font-size: 1.35rem;
transition: all 0.3s ease;
}

.nav-link:hover {
color: var(--color-magenta-light);
background: rgba(166, 47, 97, 0.08);
transform: translateX(3px);
}

.nav-link.active {
color: var(--color-magenta);
background: rgba(166, 47, 97, 0.12);
border-left: 3px solid var(--color-magenta);
margin-left: -0.5rem;
padding-left: calc(0.25rem + 0.5rem - 3px);
border-radius: 0 12px 12px 0;
}

.nav-link.active i {
transform: scale(1.15);
}

.nav-social {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.social-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(166, 47, 97, 0.1);
border: 1px solid rgba(166, 47, 97, 0.2);
color: var(--color-gray);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.1rem;
}

.social-btn:hover {
background: var(--color-magenta);
color: var(--color-white);
border-color: var(--color-magenta);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(166, 47, 97, 0.3);
}

.main-content {
margin-left: var(--sidebar-width);
min-height: 100vh;
}

.hero-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
background: var(--color-dark);
overflow: hidden;
padding: 4rem 3rem;
}

.hero-section::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 200%;
background: radial-gradient(ellipse, rgba(166, 47, 97, 0.08) 0%, transparent 70%);
pointer-events: none;
}

.hero-section::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: rgba(166, 47, 97, 0.2);
}

.hero-overlay {
position: absolute;
top: 0;
right: 0;
width: 45%;
height: 100%;
background: rgba(166, 47, 97, 0.03);
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
pointer-events: none;
}

.hero-text {
position: relative;
z-index: 2;
padding-left: 2rem;
}

.hero-tag {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(166, 47, 97, 0.12);
border: 1px solid rgba(166, 47, 97, 0.25);
color: var(--color-magenta-light);
padding: 0.5rem 1.25rem;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}

.hero-title {
font-family: var(--font-display);
font-size: clamp(3.5rem, 8vw, 7rem);
font-weight: 900;
color: var(--color-white);
line-height: 1;
margin-bottom: 0.5rem;
letter-spacing: -0.02em;
text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
font-family: var(--font-display);
font-size: clamp(1.2rem, 3vw, 2rem);
font-weight: 400;
font-style: italic;
color: var(--color-magenta-light);
margin-bottom: 2rem;
letter-spacing: 0.02em;
}

.hero-lead {
font-size: clamp(1rem, 1.5vw, 1.15rem);
line-height: 1.8;
color: var(--color-gray-light);
max-width: 700px;
margin-bottom: 1.25rem;
font-weight: 400;
}

.hero-body {
font-size: clamp(0.9rem, 1.3vw, 1.05rem);
line-height: 1.75;
color: var(--color-gray);
max-width: 650px;
margin-bottom: 2.5rem;
}

.hero-cta-box {
background: rgba(166, 47, 97, 0.06);
border: 1px solid rgba(166, 47, 97, 0.15);
border-radius: 16px;
padding: 2rem;
max-width: 600px;
backdrop-filter: blur(10px);
}

.cta-text {
font-size: 1rem;
line-height: 1.6;
margin-bottom: 1.25rem;
}

.cta-text i {
color: var(--color-magenta);
margin-right: 0.5rem;
}

.cta-buttons {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}

.btn-cta {
padding: 0.75rem 1.75rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 0.05em;
transition: all 0.3s ease;
text-transform: uppercase;
}

.btn-primary.btn-cta {
background: var(--color-magenta);
border: 2px solid var(--color-magenta);
color: var(--color-white);
}

.btn-primary.btn-cta:hover {
background: var(--color-magenta-light);
border-color: var(--color-magenta-light);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(166, 47, 97, 0.35);
}

.btn-outline-light.btn-cta {
border: 2px solid rgba(166, 47, 97, 0.4);
color: var(--color-gray-light);
background: transparent;
}

.btn-outline-light.btn-cta:hover {
background: rgba(166, 47, 97, 0.1);
border-color: var(--color-magenta);
color: var(--color-white);
transform: translateY(-2px);
}

.content-section {
position: relative;
overflow: hidden;
}

.section-accent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: var(--color-magenta);
opacity: 0;
transition: opacity 0.6s ease;
}

.section-accent::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 100%;
background: var(--color-magenta);
box-shadow: 0 0 20px rgba(166, 47, 97, 0.5);
}

.content-section:hover .section-accent {
opacity: 1;
}

.section-dark {
background: var(--color-dark);
}

.section-light {
background: var(--color-light);
color: var(--color-dark);
}

.section-row {
min-height: 100vh;
}

.section-image-col {
position: relative;
overflow: hidden;
}

.section-image-wrapper {
position: relative;
width: 100%;
height: 100%;
min-height: 500px;
}

.section-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section:hover .section-image {
transform: scale(1.03);
}

.image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(52, 52, 53, 0.25);
transition: background 0.4s ease;
}

.content-section:hover .image-overlay {
background: rgba(52, 52, 53, 0.15);
}

.section-dark .image-overlay {
background: rgba(52, 52, 53, 0.4);
}

.section-dark:hover .image-overlay {
background: rgba(52, 52, 53, 0.3);
}

.image-label {
position: absolute;
bottom: 2rem;
left: 2rem;
width: 70px;
height: 70px;
background: var(--color-magenta);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
font-size: 1.75rem;
box-shadow: 0 10px 40px rgba(166, 47, 97, 0.4);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section:hover .image-label {
transform: translateY(-5px) rotate(-5deg);
box-shadow: 0 15px 50px rgba(166, 47, 97, 0.5);
}

.section-text-col {
display: flex;
align-items: center;
padding: 4rem 3rem;
}

.section-content {
max-width: 600px;
margin: 0 auto;
}

.section-number {
font-family: var(--font-display);
font-size: 5rem;
font-weight: 900;
line-height: 1;
color: var(--color-magenta);
opacity: 0.15;
display: block;
margin-bottom: -1.5rem;
transition: opacity 0.4s ease;
}

.content-section:hover .section-number {
opacity: 0.3;
}

.section-light:hover .section-number {
opacity: 0.15;
}

.section-title {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
line-height: 1.15;
margin-bottom: 1rem;
color: var(--color-white);
}


.title-underline {
width: 60px;
height: 4px;
background: var(--color-magenta);
border-radius: 2px;
margin-bottom: 2rem;
transition: width 0.4s ease;
}

.content-section:hover .title-underline {
width: 100px;
}

.section-text {
font-size: clamp(0.9rem, 1.2vw, 1.05rem);
line-height: 1.85;
margin-bottom: 1.25rem;
color: var(--color-gray);
}

.section-light .section-text {
color: #555;
}

.section-icon-bar {
display: flex;
gap: 1.25rem;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(166, 47, 97, 0.15);
}

.section-icon-bar i {
font-size: 1.5rem;
color: var(--color-magenta);
opacity: 0.6;
transition: all 0.3s ease;
}

.section-icon-bar i:hover {
opacity: 1;
transform: translateY(-3px);
}

.section-light .section-icon-bar {
border-top-color: rgba(52, 52, 53, 0.1);
}

.section-light .section-icon-bar i {
color: var(--color-magenta);
}

.final-cta-section {
background: var(--color-dark);
padding: 6rem 3rem;
position: relative;
overflow: hidden;
}

.final-cta-section::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(166, 47, 97, 0.08) 0%, transparent 70%);
pointer-events: none;
}

.final-cta-box {
position: relative;
z-index: 2;
background: rgba(166, 47, 97, 0.04);
border: 1px solid rgba(166, 47, 97, 0.12);
border-radius: 24px;
padding: 4rem 3rem;
backdrop-filter: blur(10px);
}

.final-cta-icon {
font-size: 3rem;
color: var(--color-magenta);
margin-bottom: 1.5rem;
display: block;
}

.final-cta-title {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
color: var(--color-white);
margin-bottom: 1.5rem;
}

.final-cta-text {
font-size: 1.05rem;
line-height: 1.8;
color: var(--color-gray);
max-width: 700px;
margin: 0 auto 1.5rem;
}

.final-cta-highlight {
font-size: 1.1rem;
line-height: 1.7;
max-width: 650px;
margin: 0 auto 1rem;
}

.final-cta-highlight strong {
color: var(--color-magenta-light);
}

.final-cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2.5rem;
}

.btn-final {
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 0.05em;
transition: all 0.3s ease;
text-transform: uppercase;
}

.btn-primary.btn-final {
background: var(--color-magenta);
border: 2px solid var(--color-magenta);
color: var(--color-white);
}

.btn-primary.btn-final:hover {
background: var(--color-magenta-light);
border-color: var(--color-magenta-light);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(166, 47, 97, 0.4);
}

.btn-outline-light.btn-final {
border: 2px solid rgba(166, 47, 97, 0.4);
color: var(--color-gray-light);
background: transparent;
}

.btn-outline-light.btn-final:hover {
background: rgba(166, 47, 97, 0.1);
border-color: var(--color-magenta);
color: var(--color-white);
transform: translateY(-3px);
}

.site-footer {
background: var(--color-dark);
border-top: 1px solid rgba(166, 47, 97, 0.1);
padding: 2rem 3rem;
}

.footer-logo {
display: flex;
justify-content: flex-start;
}

.footer-logo-img {
height: 45px;
width: auto;
opacity: 0.7;
transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
opacity: 1;
}

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

.footer-copy {
font-size: 0.8rem;
color: var(--color-gray);
margin: 0;
}

.footer-social {
display: flex;
justify-content: flex-end;
gap: 1rem;
}

.footer-social a {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(166, 47, 97, 0.08);
border: 1px solid rgba(166, 47, 97, 0.15);
color: var(--color-gray);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.1rem;
}

.footer-social a:hover {
background: var(--color-magenta);
color: var(--color-white);
border-color: var(--color-magenta);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(166, 47, 97, 0.3);
}

@media (max-width: 991px) {
:root {
--sidebar-width: 70px;
}

.nav-logo {
width: 45px;
}

.nav-link span {
display: none;
}

.nav-link {
padding: 0.75rem 0.25rem;
}

.nav-link i {
font-size: 1.2rem;
}

.section-text-col {
padding: 3rem 2rem;
}

.hero-section {
padding: 3rem 1.5rem;
}

.final-cta-section {
padding: 4rem 1.5rem;
}

.final-cta-box {
padding: 3rem 2rem;
}

.footer-logo,
.footer-social {
justify-content: center;
}

.footer-text {
text-align: center;
margin: 1rem 0;
}
}

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

.section-number {
font-size: 3.5rem;
}

.section-image-wrapper {
min-height: 300px;
}

.cta-buttons,
.final-cta-buttons {
flex-direction: column;
align-items: stretch;
}

.btn-cta,
.btn-final {
text-align: center;
}
}

@media (min-width: 992px) {
.nav-sidebar:hover {
width: 200px;
}

.nav-sidebar:hover .nav-link {
flex-direction: row;
gap: 0.75rem;
padding: 0.875rem 1.25rem;
font-size: 0.75rem;
}

.nav-sidebar:hover .nav-link i {
font-size: 1.1rem;
}

.nav-sidebar:hover + .main-content {
margin-left: 200px;
}
}
