:root {
    --primary-color: #ecd0c2;
    --secondary-color: #f7e9e0;
    --text-color: #333;
    --dark-text: #222;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --footer-bg: #333;
    --footer-text: #ffffff;
    --heading-font: "Playfair Display", serif;
    --body-font: "Inter", sans-serif;
}
[data-theme="dark"] {
    --primary-color: #a67f6f;
    --secondary-color: #3a2e2a;
    --text-color: #e0e0e0;
    --dark-text: #f0f0f0;
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --footer-bg: #111111;
    --footer-text: #e0e0e0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--dark-text);
}
.navbar {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    transition: background-color 0.3s ease;
    padding: 1rem 0;
}
.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    max-width: 150px;
}
.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    transition: color 0.3s;
    font-family: var(--body-font);
    padding: 0.5rem 1rem !important;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}
.theme-switcher {
    display: flex;
    align-items: center;
}
.theme-checkbox {
    opacity: 0;
    position: absolute;
}
.theme-label {
    background-color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    height: 26px;
    width: 60px;
    transform: scale(1.1);
}
.theme-label .theme-ball {
    background-color: var(--bg-color);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    height: 22px;
    width: 22px;
    transform: translateX(0);
    transition: transform 0.2s linear;
}
.theme-checkbox:checked + .theme-label .theme-ball {
    transform: translateX(34px);
}
.sun-icon,
.moon-icon {
    font-size: 14px;
}
.sun-icon {
    color: #f39c12;
}
.moon-icon {
    color: #f1c40f;
}
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    margin-top: auto;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-auth-link {
    color: #bc9c7e !important; /* Tvoja brend boja u svetlijoj nijansi */
    text-decoration: none;
    margin-left: 8px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-auth-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}
.social-icons a {
    color: var(--footer-text);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
    display: inline-block;
}
.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-divider {
    background-color: rgb(255 255 255 / 0.1);
    margin: 2rem 0;
}
.container {
    max-width: 1200px;
}
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--dark-text);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
    font-family: var(--body-font);
}
.btn-primary:hover {
    background-color: #e0b9a7;
    color: var(--dark-text);
    transform: translateY(-2px);
}
.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-family: var(--body-font);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
}
@media (max-width: 768px) {
    .navbar-collapse {
        text-align: center;
    }
    .logo-img {
        height: 35px;
        max-width: 130px;
    }
    .theme-label {
        transform: scale(0.9);
    }
    .social-icons a {
        font-size: 1.25rem;
        margin-right: 10px;
    }
}
@media (max-width: 576px) {
    .logo-img {
        height: 30px;
        max-width: 110px;
    }
    .navbar-brand {
        font-size: 1.3rem;
    }
}
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.page-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}
.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}
.breadcrumb-nav {
    margin-bottom: 2rem;
}
.breadcrumb {
    background: #fff0;
    padding: 0;
}
.breadcrumb-item a {
    color: var(--dark-text);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--text-color);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--dark-text);
}
.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--dark-text);
    font-family: var(--heading-font);
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}
.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    text-align: center;
}
.card-common {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition:
        transform 0.3s,
        background-color 0.3s ease;
    height: 100%;
    border: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .card-common {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.card-common:hover {
    transform: translateY(-5px);
}
.home-hero-img {
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
}
.home-hero-icon {
    font-size: 10rem;
    color: var(--primary-color);
}
.feature-item {
    text-align: center;
    padding: 2rem;
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: inline-block;
    transition: transform 0.3s;
}
.feature-item:hover .feature-icon {
    animation: pulse-feature 1s infinite;
}
@keyframes pulse-feature {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
}
.cta-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}
.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--dark-text);
    text-align: center;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.about-profile-img {
    width: 250px;
    height: 250px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}
.about-profile-icon {
    font-size: 8rem;
    color: #fff;
}
.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    border: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .info-card {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
    display: flex;
    align-items: flex-start;
}
[data-theme="dark"] .info-list li {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.info-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}
.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--dark-text);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.05);
}
.service-card {
    text-align: center;
    position: relative;
}
.service-card.premium {
    border: 2px solid var(--primary-color);
}
.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .service-header {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
}
.period {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}
.service-features ul {
    list-style: none;
    padding: 0;
}
.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}
.package-card {
    text-align: center;
}
.package-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    transform: scale(1.05);
}
.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .package-header {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.package-sessions {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}
.package-features ul {
    list-style: none;
    padding: 0;
}
.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-features li i {
    margin-right: 0.75rem;
    font-size: 0.9rem;
}
.package-features li i.bi-check {
    color: #28a745;
}
.package-features li i.bi-x {
    color: #dc3545;
}
.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .faq-item {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.faq-question {
    color: var(--dark-text);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.faq-question i {
    color: var(--primary-color);
}
.booking-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
    border: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .booking-form {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.blog-card {
    border: none;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition:
        transform 0.3s,
        background-color 0.3s ease;
    background-color: var(--card-bg);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.blog-card .card-body {
    padding: 1.5rem;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}
.blog-meta i {
    margin-right: 0.5rem;
}
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.blog-category {
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}
.blog-sidebar {
    background: var(--card-bg);
    padding: 2rem;
}
[data-theme="dark"] .blog-sidebar {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.sidebar-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}
.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .recent-post {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}
.category-list {
    list-style: none;
    padding: 0;
}
.category-list li {
    padding: 0.5rem 0.5rem;
    background: #f3e0d5;
    border-radius: 10px;
    font-size: 12px;
}
[data-theme="dark"] .category-list li {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.category-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.category-list a:hover {
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .page-title {
        font-size: 2.8rem;
    }
    .home-hero-img {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    .home-hero-icon {
        font-size: 8rem;
    }
    .about-profile-img {
        width: 200px;
        height: 200px;
    }
    .about-profile-icon {
        font-size: 6rem;
    }
    .package-card.featured {
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    .page-title {
        font-size: 2.2rem;
    }
    .page-subtitle {
        font-size: 1.2rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 60px;
    }
    .timeline-date {
        width: 50px;
        font-size: 0.8rem;
    }
    .booking-form {
        margin-top: 2rem;
    }
}
@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    .home-hero-img {
        width: 200px;
        height: 200px;
    }
    .home-hero-icon {
        font-size: 6rem;
    }
    .about-profile-img {
        width: 150px;
        height: 150px;
    }
    .about-profile-icon {
        font-size: 4rem;
    }
    .service-card,
    .package-card {
        padding: 1.5rem;
    }
    .booking-form {
        padding: 1.5rem;
    }
}
.contact-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
[data-theme="dark"] .contact-point {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.contact-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-point-icon {
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.contact-point-icon i {
    font-size: 1.5rem;
}
.contact-point-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 500;
}
.home-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgb(255 255 255 / 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgb(255 255 255 / 0.3);
}
.hero-badge span {
    color: var(--dark-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-badge i {
    color: #e74c3c;
}
.hero-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}
.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.image-wrapper {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
    animation: float-home 6s ease-in-out infinite;
}
@keyframes float-home {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.main-icon {
    font-size: 10rem;
    color: #fff;
}
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
    animation: floatElement 4s ease-in-out infinite;
}
.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.element-2 {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
}
.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}
@keyframes floatElement {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}
.about-preview {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.preview-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.image-container {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgb(236 208 194 / 0.2) 0%, rgb(247 233 224 / 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}
.preview-icon {
    font-size: 6rem;
    color: var(--primary-color);
}
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
    animation: pulse-home 2s ease-in-out infinite;
}
@keyframes pulse-home {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.experience-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.experience-text {
    font-size: 0.9rem;
    font-weight: 500;
}
.preview-content {
    padding-left: 2rem;
}
.preview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}
.preview-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i {
    font-size: 1.5rem;
}
.feature-content h4 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin: 0;
    line-height: 1.2;
    padding: 0;
    font-size: 1.1rem;
}
.feature-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.services-preview {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(236 208 194 / 0.1) 0%, rgb(247 233 224 / 0.1) 100%);
    overflow: hidden;
}
[data-theme="dark"] .services-preview {
    background: linear-gradient(135deg, rgb(166 127 111 / 0.1) 0%, rgb(58 46 42 / 0.1) 100%);
}
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ecd0c2' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.section-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.service-preview-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgb(0 0 0 / 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
}
[data-theme="dark"] .service-preview-card {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(0 0 0 / 0.1);
}
.service-preview-card.featured {
    border: 2px solid var(--primary-color);
}
.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.service-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.service-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.service-features span {
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-features i {
    color: var(--primary-color);
}
.why-choose {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
}
[data-theme="dark"] .stat-card {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.stat-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-text {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}
.benefit-card {
    background: var(--card-bg);
    padding: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
[data-theme="dark"] .benefit-card {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.08);
}
.benefit-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.benefit-card h4 {
    margin: 0;
    font-family: var(--heading-font);
    color: var(--dark-text);
    font-size: 1.3rem;
}
.benefit-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}
.blog-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(247 233 224 / 0.2) 0%, rgb(236 208 194 / 0.2) 100%);
}
[data-theme="dark"] .blog-preview {
    background: linear-gradient(135deg, rgb(58 46 42 / 0.2) 0%, rgb(166 127 111 / 0.2) 100%);
}
.blog-preview-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 / 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}
[data-theme="dark"] .blog-preview-card {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.blog-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(0 0 0 / 0.1);
}
.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-preview-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-content {
    padding: 1.5rem;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.blog-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}
.blog-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}
.blog-link:hover {
    gap: 0.75rem;
    color: var(--text-color);
}
.home-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    position: relative;
    overflow: hidden;
}
.home-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgb(255 255 255 / 0.1);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-icon {
    font-size: 4rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    animation: pulse-home 2s ease-in-out infinite;
}
.cta-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.cta-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text);
    font-weight: 500;
}
.cta-feature i {
    color: var(--dark-text);
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .image-wrapper {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }
    .main-icon {
        font-size: 8rem;
    }
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .preview-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .home-hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .image-wrapper {
        width: 250px;
        height: 250px;
    }
    .main-icon {
        font-size: 6rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .image-wrapper {
        width: 200px;
        height: 200px;
    }
    .main-icon {
        font-size: 4rem;
    }
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .image-container {
        width: 200px;
        height: 200px;
    }
    .preview-icon {
        font-size: 4rem;
    }
    .experience-badge {
        padding: 0.75rem;
    }
    .experience-number {
        font-size: 1.5rem;
    }
    .service-preview-card {
        padding: 1.5rem;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-icon {
        font-size: 3rem;
    }
}
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.about-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}
.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
}
.about-profile-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.profile-image-wrapper {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
    animation: float-about 6s ease-in-out infinite;
}
@keyframes float-about {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}
.profile-icon {
    font-size: 8rem;
    color: #fff;
}
.profile-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle-1 {
    width: 410px;
    height: 410px;
    animation: pulse-about 4s ease-in-out infinite;
}
.circle-2 {
    width: 440px;
    height: 440px;
    animation: pulse-about 4s ease-in-out infinite 0.5s;
}
.circle-3 {
    width: 480px;
    height: 0;
    animation: pulse-about 4s ease-in-out infinite 1s;
}
@keyframes pulse-about {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}
.biography-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.biography-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}
.biography-content p {
    margin-bottom: 1.5rem;
}
.quote-card {
    background: linear-gradient(135deg, rgb(236 208 194 / 0.1) 0%, rgb(247 233 224 / 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
}
.quote-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.05;
    z-index: 1;
}
.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.quote-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}
.quick-info-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    border: 1px solid rgb(0 0 0 / 0.1);
    position: sticky;
    top: 100px;
}
[data-theme="dark"] .quick-info-card {
    border: 1px solid rgb(255 255 255 / 0.1);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
}
.info-card-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
}
[data-theme="dark"] .info-item {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.info-icon {
    background: var(--primary-color);
    color: var(--dark-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.info-icon i {
    font-size: 1.5rem;
}
.info-content h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}
.info-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.education-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(236 208 194 / 0.15) 0%, rgb(247 233 224 / 0.15) 100%);
    overflow: hidden;
}
[data-theme="dark"] .education-section {
    background: linear-gradient(135deg, rgb(166 127 111 / 0.1) 0%, rgb(58 46 42 / 0.1) 100%);
}
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ecd0c2' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}
.timeline-group {
    margin-bottom: 4rem;
    position: relative;
}
.timeline-group:last-child {
    margin-bottom: 0;
}
.timeline-group-title {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}
.group-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    background: var(--card-bg);
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
}
.timeline-group-title h3 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 0;
    font-size: 1.8rem;
}
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2.5rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--dark-text);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    z-index: 2;
}
.timeline-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.08);
    border: 1px solid rgb(0 0 0 / 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .timeline-card {
    border: 1px solid rgb(255 255 255 / 0.1);
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.2);
}
.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgb(0 0 0 / 0.12);
}
.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px 0 0 4px;
}
.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.timeline-card-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.4;
}
.timeline-card-badge {
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.timeline-card-body {
    color: var(--text-color);
}
.timeline-card-institution {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.timeline-card-description {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.timeline-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.skill-tag {
    background: rgb(236 208 194 / 0.2);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgb(236 208 194 / 0.3);
}
[data-theme="dark"] .skill-tag {
    background: rgb(166 127 111 / 0.2);
    border-color: rgb(166 127 111 / 0.3);
}
.specializations-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.specialization-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgb(0 0 0 / 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .specialization-card {
    border: 1px solid rgb(255 255 255 / 0.1);
}
.specialization-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgb(0 0 0 / 0.1);
}
.specialization-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}
.specialization-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.specialization-card-icon.anxiety {
    background: rgb(236 208 194 / 0.2);
    color: #e74c3c;
}
.specialization-card-icon.depression {
    background: rgb(155 89 182 / 0.1);
    color: #9b59b6;
}
.specialization-card-icon.relationships {
    background: rgb(52 152 219 / 0.1);
    color: #3498db;
}
.specialization-card-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.specialization-card-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.specialization-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.specialization-card-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}
.specialization-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(247 233 224 / 0.3) 0%, rgb(236 208 194 / 0.3) 100%);
}
[data-theme="dark"] .philosophy-section {
    background: linear-gradient(135deg, rgb(58 46 42 / 0.3) 0%, rgb(166 127 111 / 0.3) 100%);
}
.philosophy-image {
    text-align: center;
}
.philosophy-image-wrapper {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
    animation: float-about 6s ease-in-out infinite 1s;
    padding: 10px;
}
.philosophy-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
}
.philosophy-icon {
    font-size: 8rem;
    color: #fff;
}
.philosophy-content {
    padding-left: 2rem;
}
.philosophy-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.philosophy-point:last-child {
    margin-bottom: 0;
}
.philosophy-point-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.philosophy-point-content h3 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.philosophy-point-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgb(255 255 255 / 0.1);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.about-cta-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.about-cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--dark-text);
    line-height: 1.6;
}
.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .about-title {
        font-size: 2.8rem;
    }
    .profile-image-wrapper {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    .profile-icon {
        font-size: 6rem;
    }
    .profile-decoration {
        width: 320px;
        height: 320px;
    }
    .circle-1 {
        width: 280px;
        height: 280px;
    }
    .circle-2 {
        width: 300px;
        height: 300px;
    }
    .circle-3 {
        width: 320px;
        height: 320px;
    }
    .philosophy-image-wrapper {
        width: 250px;
        height: 250px;
        margin-bottom: 3rem;
    }
    .philosophy-icon {
        font-size: 6rem;
    }
    .philosophy-content {
        padding-left: 0;
    }
}
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    .about-title {
        font-size: 2.2rem;
    }
    .about-subtitle {
        font-size: 1.2rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 60px;
    }
    .timeline-date {
        width: 50px;
        font-size: 0.8rem;
    }
    .about-cta-title {
        font-size: 2rem;
    }
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .timeline-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 576px) {
    .about-title {
        font-size: 1.8rem;
    }
    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }
    .profile-icon {
        font-size: 4rem;
    }
    .profile-decoration {
        width: 260px;
        height: 260px;
    }
    .circle-1 {
        width: 220px;
        height: 220px;
    }
    .circle-2 {
        width: 240px;
        height: 240px;
    }
    .circle-3 {
        width: 260px;
        height: 260px;
    }
    .philosophy-image-wrapper {
        width: 200px;
        height: 200px;
    }
    .philosophy-icon {
        font-size: 4rem;
    }
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .info-icon {
        margin-bottom: 0.75rem;
    }
    .quick-info-card {
        position: static;
        margin-top: 2rem;
    }
}
.social-link-item {
    color: inherit; /* Uzima boju teksta iz teme (belu u dark, crnu u light) */
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    color: #bc9c7e !important; /* Tvoja brend boja */
    transform: translateY(-3px);
}

/* Suptilna promena naslova u zavisnosti od teme */
.social-follow-box .blog-title {
    color: #bc9c7e; /* Naslov uvek u brend boji da bi odskočio */
}

/* Ako tvoj sajt koristi klasu .dark-mode ili slično na body-u, 
   ovde možeš dodatno finiširati pozadinu box-a */
[data-bs-theme="dark"] .social-follow-box {
    background: rgba(255, 255, 255, 0.03);
}

[data-bs-theme="light"] .social-follow-box {
    background: rgba(0, 0, 0, 0.03);
}
