:root {
    /* Color Palette - Pastel Colors for Legal/Trust */
    --primary-color-1: #3a7ca5; /* Deep Blue */
    --primary-color-2: #d9c089; /* Soft Gold */
    --primary-color-3: #f2f7f2; /* Off-White */
    --primary-color-4: #6c6b74; /* Charcoal Grey */
    --primary-color-5: #c29591; /* Dusty Rose */
    
    /* Shades and Tints */
    --primary-color-1-light: #5090b9;
    --primary-color-1-dark: #2c6284;
    --primary-color-2-light: #e4d1a3;
    --primary-color-2-dark: #c2a76d;
    --primary-color-3-light: #ffffff;
    --primary-color-3-dark: #e5eae5;
    --primary-color-4-light: #88878f;
    --primary-color-4-dark: #4f4e56;
    --primary-color-5-light: #d1ada9;
    --primary-color-5-dark: #a57874;
}

/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color-3);
    color: var(--primary-color-4);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color-1-dark);
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-1-dark);
}

.btn-primary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
}

.btn-secondary {
    background-color: var(--primary-color-2);
    border-color: var(--primary-color-2);
    color: var(--primary-color-4-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-color-2-dark);
    border-color: var(--primary-color-2-dark);
    color: var(--primary-color-4-dark);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(242, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(242, 247, 242, 0.95);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color-1);
}

.nav-link {
    color: var(--primary-color-4);
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 5px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color-1);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--primary-color-3);
    display: flex;
    align-items: center;
    background-image: url('../RES_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 124, 165, 0.7) 0%, rgba(194, 149, 145, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
}

/* About Section */
.about {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-feature {
    padding: 30px 20px;
    border-radius: 10px;
    background-color: var(--primary-color-3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--primary-color-3-light);
    position: relative;
}

.services-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item i {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

.services-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color-1);
    margin: 15px 0;
}

.services-item-features {
    list-style: none;
    padding-left: 0;
}

.services-item-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.services-item-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color-1);
}

/* Features Section */
.features {
    background-color: #fff;
}

.features-item {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.features-item:hover {
    transform: translateY(-10px);
}

.features-item i {
    font-size: 3.5rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan {
    background-color: var(--primary-color-3-light);
    position: relative;
}

.priceplan-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.priceplan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-1);
    margin: 15px 0;
}

.priceplan-item-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.priceplan-item-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-color-3-dark);
}

/* Team Section */
.team {
    background-color: #fff;
    position: relative;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member-role {
    color: var(--primary-color-1);
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    background-color: var(--primary-color-3-light);
    position: relative;
}

.reviews .swiper {
    padding-bottom: 50px;
}

.reviews-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.reviews-item-author {
    font-weight: 700;
    color: var(--primary-color-1);
    margin-top: 20px;
}

.reviews-item-text {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.reviews-item-text:before,
.reviews-item-text:after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color-1-light);
    opacity: 0.3;
    position: absolute;
}

.reviews-item-text:before {
    top: -20px;
    left: 0;
}

.reviews-item-text:after {
    bottom: -40px;
    right: 0;
}

/* Core Info Section */
.coreinfo {
    background-color: #fff;
}

.coreinfo-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.coreinfo-item i {
    font-size: 2.5rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background-color: var(--primary-color-3-light);
    position: relative;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid var(--primary-color-3-dark);
    padding: 15px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 0.2rem rgba(58, 124, 165, 0.25);
}

/* Blog Section */
.blog {
    background-color: #fff;
}

.blog-item {
    background-color: var(--primary-color-3-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
}

.blog-item-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-item-content {
    padding: 20px;
}

.blog-item-title {
    margin-bottom: 10px;
}

.blog-item-excerpt {
    margin-bottom: 20px;
}

/* FAQ Section */
.faq {
    background-color: var(--primary-color-3-light);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-1-light);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(58, 124, 165, 0.25);
}

/* Gallery Section */
.gallery {
    background-color: #fff;
    padding-bottom: 0;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--primary-color-1-dark);
    color: var(--primary-color-3-light);
    padding: 80px 0 30px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer a {
    color: var(--primary-color-3-light);
}

.footer a:hover {
    color: var(--primary-color-2);
}

.footer p {
    margin-bottom: 10px;
}

.footer-menu {
    padding-left: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

#site-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 10px 0;
    background-color: var(--primary-color-3-light);
    border-bottom: 1px solid var(--primary-color-3-dark);
}

/* Animation elements */
.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-color-1);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 5%;
    right: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-2);
    transform: rotate(45deg);
    animation: rotate 15s linear infinite;
}

.shape-3 {
    top: 30%;
    right: 5%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary-color-5);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Additional Page Styles */
.add-page-section {
    padding: 80px 0;
}

.add-page-section:nth-child(odd) {
    background-color: var(--primary-color-3-light);
}

.add-page-section:nth-child(even) {
    background-color: #fff;
}

/* Space page */
.space-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
} 