/* Main CSS file for the Heirship Dispute Mediation Workshops template */
:root {
    /* Color Palette */
    --primary-color-1: #8a7f8d; /* Muted lavender */
    --primary-color-2: #e0c5b4; /* Soft peach */
    --primary-color-3: #a8c7a4; /* Sage green */
    --primary-color-4: #dda77b; /* Warm terracotta */
    --primary-color-5: #6d6875; /* Deep mauve */
    
    /* Shades */
    --primary-color-1-light: #a99da3;
    --primary-color-1-dark: #645a66;
    --primary-color-2-light: #eddac9;
    --primary-color-2-dark: #c1a696;
    --primary-color-3-light: #c5dbc1;
    --primary-color-3-dark: #87a283;
    --primary-color-4-light: #ebc2a3;
    --primary-color-4-dark: #ba8457;
    --primary-color-5-light: #8c8791;
    --primary-color-5-dark: #55505c;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color-5-dark);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.btn-custom {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50px;
}

.btn-primary-custom {
    background-color: var(--primary-color-3);
    color: var(--text-light);
}

.btn-primary-custom:hover {
    background-color: var(--primary-color-3-dark);
}

.btn-secondary-custom {
    background-color: var(--primary-color-1);
    color: var(--text-light);
}

.btn-secondary-custom:hover {
    background-color: var(--primary-color-1-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color-5-dark);
}

.nav-link {
    color: var(--primary-color-5);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color-3);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-color-2-light);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--primary-color-3-light);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

#hero-title-1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color-5-dark);
}

#hero-subtitle-1 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color-5);
}

#hero-desc-1 {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    bottom: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color-4-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
}

.shape-2 {
    top: -30px;
    right: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.2;
}

/* About Section */
#about {
    background-color: #fff;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color-3);
    border-radius: 10px;
    z-index: -1;
}

.about-feature {
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-3);
}

/* Services Section */
#services {
    background-color: var(--primary-color-2-light);
    position: relative;
    overflow: hidden;
}

.services-shape {
    position: absolute;
    z-index: 0;
}

.services-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-3-light);
    border-radius: 50%;
    opacity: 0.3;
}

.services-shape-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background-color: var(--primary-color-4-light);
    border-radius: 50%;
    opacity: 0.2;
}

.service-item {
    padding: 3rem 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color-3);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-item img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-desc {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color-3);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color-5);
}

/* Features Section */
#features {
    background-color: #fff;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-4);
    display: inline-block;
    padding: 1.5rem;
    border-radius: 50%;
    background-color: var(--primary-color-4-light);
}

/* Price Plan Section */
#priceplan {
    background-color: var(--primary-color-1-light);
    position: relative;
    overflow: hidden;
}

.price-shape {
    position: absolute;
    z-index: 0;
}

.price-shape-1 {
    top: -50px;
    right: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-3);
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    opacity: 0.2;
}

.price-shape-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background-color: var(--primary-color-4);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.2;
}

.price-item {
    padding: 3rem 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.price-item.featured::after {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary-color-4);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 1;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-desc {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color-5);
}

.price-features {
    margin-bottom: 2rem;
}

.price-features ul {
    list-style: none;
    padding-left: 0;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color-3);
}

/* Team Section */
#team {
    background-color: #fff;
}

.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.team-member:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    background-color: #fff;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color-3);
    font-weight: 600;
}

/* Reviews Section */
#reviews {
    background-color: var(--primary-color-3-light);
    position: relative;
    overflow: hidden;
}

.reviews-shape {
    position: absolute;
    z-index: 0;
}

.reviews-shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-4);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
}

.reviews-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-1);
    border-radius: 50%;
    opacity: 0.1;
}

.review-item {
    padding: 2rem;
    margin: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color-3-light);
    opacity: 0.3;
}

.review-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color-5);
}

/* Core Info Section */
#coreinfo {
    background-color: #fff;
}

.core-item {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.core-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.core-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
    padding: 1.5rem;
    border-radius: 50%;
    background-color: var(--primary-color-1-light);
    display: inline-block;
}

/* Contact Section */
#contact {
    background-color: var(--primary-color-2-light);
    position: relative;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    z-index: 0;
}

.contact-shape-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-3);
    border-radius: 50%;
    opacity: 0.2;
}

.contact-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-4);
    border-radius: 50%;
    opacity: 0.2;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info i {
    font-size: 2rem;
    color: var(--primary-color-3);
    margin-bottom: 1rem;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-control {
    border: 1px solid #eee;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary-color-3);
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--primary-color-3);
    border-color: var(--primary-color-3);
}

/* Blog Section */
#blog {
    background-color: #fff;
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.blog-link {
    font-weight: 600;
    color: var(--primary-color-3);
}

/* FAQ Section */
#faq {
    background-color: var(--primary-color-1-light);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color-3);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a8c7a4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Gallery Section */
#gallery {
    background-color: #fff;
    padding-bottom: var(--spacing-xl);
}

.gallery-container {
    margin-bottom: 30px;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color-5-dark);
    color: #fff;
    padding: var(--spacing-xl) 0 0;
    position: relative;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-desc {
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info-footer {
    margin-bottom: 0.8rem;
    display: flex;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-footer i {
    margin-right: 10px;
    color: var(--primary-color-3);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 2rem 0;
    background-color: var(--primary-color-2-light);
}

/* Additional Pages */
.section-additional {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Space Page */
#space {
    min-height: 500px;
    background-color: var(--primary-color-2-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
} 