:root {
    /* Color Palette */
    --primary-color-1: #5a85a5; /* Modern sage blue */
    --primary-color-2: #d3aa7e; /* Warm gold */
    --primary-color-3: #f6f3ed; /* Soft cream */
    --primary-color-4: #3a4a5a; /* Deep navy */
    --primary-color-5: #e8906e; /* Terracotta accent */
    
    /* Tints and shades */
    --primary-color-1-light: #7ba1bc;
    --primary-color-1-dark: #476b8a;
    --primary-color-2-light: #e4c399;
    --primary-color-2-dark: #b08b5e;
    --primary-color-3-light: #ffffff;
    --primary-color-3-dark: #e2dbd0;
    --primary-color-4-light: #5a6a7a;
    --primary-color-4-dark: #293542;
    --primary-color-5-light: #f0ac8f;
    --primary-color-5-dark: #c6744e;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-color-4);
    background-color: var(--primary-color-3);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color-4-dark);
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color-1);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color-1-dark);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color-1);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--primary-color-2);
    color: var(--primary-color-4-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-color-2-dark);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Section styling */
.section-title {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color-1);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

/* Card styling */
.card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    margin-bottom: var(--spacing-md);
}

/* Header */
header {
    background-color: var(--primary-color-3);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(246, 243, 237, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color-4-dark);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.nav-item {
    margin-left: var(--spacing-md);
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-color-3-light);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color-4-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color-1);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(90deg, var(--primary-color-3-light) 0%, rgba(246, 243, 237, 0.8) 30%, rgba(246, 243, 237, 0.4) 100%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-color-2-light);
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    top: -100px;
    right: 10%;
}

.shape-2 {
    bottom: -150px;
    left: 5%;
}

/* About Section */
.about {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-1-light);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.about-shape-1 {
    top: -200px;
    right: -200px;
}

.about-feature {
    text-align: center;
    padding: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.about-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color-1);
    margin-bottom: var(--spacing-sm);
}

.about-feature-name {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

/* Services Section */
.services {
    background-color: var(--primary-color-3);
    position: relative;
}

.services-item {
    margin-bottom: var(--spacing-lg);
}

.services-item-image {
    height: 200px;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    overflow: hidden;
}

.services-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-item:hover .services-item-image img {
    transform: scale(1.05);
}

.services-item-content {
    padding: var(--spacing-md);
    background-color: white;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.services-item-name {
    color: var(--primary-color-4-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.services-item-price {
    color: var(--primary-color-5);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.services-item-features {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.services-item-features li {
    margin-bottom: 0.5rem;
    position: relative;
}

.services-item-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color-1);
    position: absolute;
    left: -1.5rem;
}

/* Features Section */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.features-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.features-item-icon {
    font-size: 2rem;
    color: var(--primary-color-2);
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.features-item-content {
    flex-grow: 1;
}

.features-item-name {
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

/* Price Plan Section */
.priceplan {
    background-color: var(--primary-color-3);
}

.priceplan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.priceplan-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
}

.priceplan-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.priceplan-item-header {
    background-color: var(--primary-color-1-light);
    padding: var(--spacing-md);
    text-align: center;
    color: white;
}

.priceplan-item:nth-child(2) .priceplan-item-header {
    background-color: var(--primary-color-5);
}

.priceplan-item:nth-child(3) .priceplan-item-header {
    background-color: var(--primary-color-2);
}

.priceplan-item-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.priceplan-item-body {
    padding: var(--spacing-md);
}

.priceplan-item-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.priceplan-item-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--primary-color-3-dark);
    position: relative;
    padding-left: 1.5rem;
}

.priceplan-item-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color-1);
    position: absolute;
    left: 0;
}

/* Team Section */
.team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.team-member {
    background-color: var(--primary-color-3-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info {
    padding: var(--spacing-md);
    text-align: center;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color-4-dark);
}

.team-member-role {
    color: var(--primary-color-1);
    font-style: italic;
}

/* Reviews Section */
.reviews {
    background-color: var(--primary-color-3);
    position: relative;
    overflow: hidden;
}

.reviews-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--primary-color-2-light);
    opacity: 0.05;
    z-index: 0;
}

.reviews-shape-1 {
    top: -200px;
    left: -200px;
}

.reviews-shape-2 {
    bottom: -200px;
    right: -200px;
}

.reviews-slider {
    position: relative;
    z-index: 1;
}

.reviews-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    margin: 0 var(--spacing-sm);
    position: relative;
}

.reviews-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary-color-1-light);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 10px;
}

.reviews-item-text {
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.reviews-item-author {
    font-weight: 700;
    color: var(--primary-color-4-dark);
}

/* Core Info Section */
.coreinfo {
    background-color: white;
}

.coreinfo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.coreinfo-item {
    text-align: center;
    padding: var(--spacing-md);
}

.coreinfo-item-icon {
    font-size: 2.5rem;
    color: var(--primary-color-1);
    margin-bottom: var(--spacing-sm);
}

.coreinfo-item-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

/* Contact Form */
.contact {
    background-color: var(--primary-color-3);
    position: relative;
    overflow: hidden;
}

.contact-form {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--primary-color-3-dark);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color-1);
    outline: none;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-check {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--primary-color-3-dark);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

/* Blog Section */
.blog {
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.blog-item {
    background-color: var(--primary-color-3-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-item-image {
    height: 200px;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.05);
}

.blog-item-content {
    padding: var(--spacing-md);
}

.blog-item-date {
    font-size: 0.9rem;
    color: var(--primary-color-1);
    margin-bottom: var(--spacing-xs);
}

.blog-item-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.blog-item-excerpt {
    margin-bottom: var(--spacing-md);
}

.blog-item-link {
    font-weight: 600;
    color: var(--primary-color-1);
    position: relative;
    padding-right: 20px;
}

.blog-item-link::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.blog-item-link:hover::after {
    transform: translateX(5px);
}

/* FAQ Section */
.faq {
    background-color: var(--primary-color-3);
}

.accordion-item {
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    background-color: white;
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--primary-color-3-light);
}

.accordion-header.active {
    background-color: var(--primary-color-1-light);
    color: white;
}

.accordion-header-text {
    margin: 0;
    font-weight: 600;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body.active {
    padding: var(--spacing-md);
    max-height: 500px;
}

.accordion-content {
    margin: 0;
}

/* Gallery Section */
.gallery {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 74, 90, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-icon {
    color: white;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color-4-dark);
    color: white;
    padding: var(--spacing-lg) 0;
}
footer h3, h2, h4 {
    
    color: white;
 
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
}

.footer-brand {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-desc {
    margin-bottom: var(--spacing-md);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--primary-color-3-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color-2-light);
}

.contact-info {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    color: var(--primary-color-2);
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
} 