:root {
    /* Primary Colors */
    --primary-1: #8B5A2B; /* Rich amber */
    --primary-2: #D4A76A; /* Antique gold */
    --primary-3: #4B3621; /* Walnut brown */
    --primary-4: #F2E8DC; /* Parchment */
    --primary-5: #7D8471; /* Sage green */
    
    /* Light/Dark Shades */
    --primary-1-light: #A47A4C;
    --primary-1-dark: #6B4016;
    --primary-2-light: #E5C592;
    --primary-2-dark: #BC8A4E;
    --primary-3-light: #6B563E;
    --primary-3-dark: #362718;
    --primary-4-light: #FFF8F0;
    --primary-4-dark: #DFD0BE;
    --primary-5-light: #9DA18E;
    --primary-5-dark: #5D6453;
    
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-md: 1.125rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 1.875rem;
    --font-3xl: 2.25rem;
    --font-4xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--primary-4-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-3);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-1-dark);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
}

.btn-outline-primary {
    border: 2px solid var(--primary-1);
    color: var(--primary-1);
}

.btn-outline-primary:hover {
    background-color: var(--primary-1);
    color: white;
}

/* Header Styles */
header {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: var(--font-xl);
    color: var(--primary-1);
}

.nav-link {
    color: var(--primary-3);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-1);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--primary-4);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: var(--font-4xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-3);
}

.hero-subtitle {
    font-size: var(--font-xl);
    margin-bottom: 2rem;
    color: var(--primary-1);
}

.hero-desc {
    font-size: var(--font-lg);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Section Styling */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: var(--font-3xl);
    color: var(--primary-3);
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-lg);
    color: var(--primary-1);
    margin-bottom: 1.5rem;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* About Features */
.about-feature {
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-feature h3 {
    color: var(--primary-1);
    margin-bottom: 1rem;
}

/* Services */
.services-section {
    background-color: var(--primary-4-light);
}

.service-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    font-size: var(--font-lg);
    color: var(--primary-1);
    margin-bottom: 0.5rem;
}

.service-desc {
    margin-bottom: 1rem;
}

.service-features {
    margin-bottom: 1rem;
}

.service-features ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary-3);
}

/* Features */
.features-section {
    background-color: white;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-1);
    margin-bottom: 1.5rem;
}

.feature-name {
    font-size: var(--font-xl);
    margin-bottom: 1rem;
    color: var(--primary-3);
}

/* Price Plans */
.priceplan-section {
    background-color: var(--primary-4-light);
}

.price-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
    position: relative;
    border-top: 5px solid var(--primary-2);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-name {
    font-size: var(--font-xl);
    margin-bottom: 1rem;
    color: var(--primary-1);
}

.price-amount {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--primary-3);
    margin-bottom: 1.5rem;
}

.price-features {
    margin-bottom: 2rem;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Team */
.team-section {
    background-color: white;
}

.team-member {
    margin-bottom: 2rem;
    text-align: center;
}

.team-img-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-4);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: var(--font-lg);
    margin-bottom: 0.5rem;
    color: var(--primary-3);
}

.team-role {
    color: var(--primary-1);
    font-style: italic;
}

/* Reviews */
.reviews-section {
    background-color: var(--primary-4-light);
    position: relative;
}

.reviews-section::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 5rem;
    font-size: 15rem;
    color: rgba(139, 90, 43, 0.05);
    font-family: serif;
}

.review-item {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary-1);
}

/* Core Info */
.coreinfo-section {
    background-color: white;
}

.coreinfo-item {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    background-color: var(--primary-4-light);
    transition: transform 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
}

.coreinfo-icon {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 1.5rem;
}

.coreinfo-title {
    font-size: var(--font-lg);
    margin-bottom: 1rem;
    color: var(--primary-3);
}

/* Contact */
.contact-section {
    background-color: var(--primary-4-light);
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--primary-4-dark);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

.form-control:focus {
    border-color: var(--primary-1);
    box-shadow: 0 0 0 0.25rem rgba(139, 90, 43, 0.25);
}

/* Blog */
.blog-section {
    background-color: white;
}

.blog-card {
    background-color: var(--primary-4-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: var(--font-lg);
    margin-bottom: 1rem;
    color: var(--primary-3);
}

.blog-excerpt {
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-section {
    background-color: var(--primary-4-light);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    background-color: transparent;
}

.accordion-button {
    background-color: white;
    color: var(--primary-3);
    font-weight: 600;
    padding: 1.25rem;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-1);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-1);
}

.accordion-body {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Gallery */
.gallery-section {
    background-color: white;
}

.gallery-item {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-3);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: var(--font-xl);
    margin-bottom: 1.5rem;
    color: var(--primary-2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--primary-4);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-2);
}

.contact-info {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-2);
}

#site-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: var(--font-sm);
    color: var(--primary-4-light);
}

/* Decorative Elements */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-circle {
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(212, 167, 106, 0.1);
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(139, 90, 43, 0.1);
    bottom: -100px;
    left: -100px;
}

/* Additional Pages */
.page-header {
    background-color: var(--primary-3);
    padding: 5rem 0;
    margin-bottom: 5rem;
    color: white;
}

.page-title {
    font-size: var(--font-3xl);
    margin-bottom: 1rem;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-2);
}

.breadcrumb-item.active {
    color: var(--primary-4);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding-bottom: 3rem;
}

.swiper-pagination-bullet {
    background-color: var(--primary-1);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-1);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 