:root {
    /* Primary Color Palette - 5 colors plus light/dark shades */
    --primary-color: #8B4A6B;
    --primary-light: #B5739A;
    --primary-dark: #5E2F45;
    
    --secondary-color: #D4AF37;
    --secondary-light: #E6C866;
    --secondary-dark: #B8941E;
    
    --accent-color: #4A6741;
    --accent-light: #6B8A60;
    --accent-dark: #354A2C;
    
    --neutral-color: #F5F1EB;
    --neutral-light: #FDFCF9;
    --neutral-dark: #E8E0D6;
    
    --charcoal-color: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --charcoal-dark: #1A1A1A;
    
    /* Typography */
    --font-family-primary: 'Playfair Display', serif;
    --font-family-secondary: 'Source Sans Pro', sans-serif;
    
    /* Conservative font sizes */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-padding: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--charcoal-color);
    background-color: var(--neutral-light);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }

p {
    margin-bottom: 1rem;
    color: var(--charcoal-light);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large) !important; /* Conservative size for logo */
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--charcoal-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 50%, var(--accent-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../PAW_images/hero-background.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: white;
    font-size: var(--font-size-h1); /* Conservative size */
    margin-bottom: 1rem;
}

.hero-section h2 {
    color: var(--neutral-light);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: var(--neutral-light);
    font-size: var(--font-size-large);
    margin-bottom: 2rem;
}

/* Section Styles */
.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--charcoal-light);
    font-size: var(--font-size-large);
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background-color: var(--neutral-light);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--charcoal-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(45deg, var(--neutral-color) 0%, var(--neutral-light) 100%);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--charcoal-light);
}

.service-card .price {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Features Section */
.features-section {
    background-color: var(--neutral-light);
}

.feature-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.feature-item h4 {
    color: var(--charcoal-color);
    margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan-section {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
    color: white;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--charcoal-color);
    height: 100%;
}

.price-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--secondary-color);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* Team Section */
.team-section {
    background-color: var(--neutral-color);
}

.team-member {
    text-align: center;
    padding: 1rem;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h5 {
    color: var(--charcoal-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(45deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
    color: white;
}

.review-card {
    background: white;
    color: var(--charcoal-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--charcoal-light);
}

.review-card h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Case Study Section */
.casestudy-section {
    background-color: var(--neutral-light);
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.case-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--neutral-color) 0%, var(--neutral-light) 100%);
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--charcoal-color);
    margin-bottom: 0.5rem;
}

/* Timeline Section */
.timeline-section {
    background-color: var(--neutral-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Career Section */
.career-section {
    background-color: var(--neutral-color);
}

.career-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card h4 {
    color: var(--charcoal-color);
    margin-bottom: 1rem;
}

.career-card span {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-section {
    background-color: var(--neutral-light);
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Blog Section */
.blog-section {
    background-color: var(--neutral-color);
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--charcoal-color);
}

.blog-card p {
    padding: 0 1.5rem;
    color: var(--charcoal-light);
}

.blog-card a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-card a:hover {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-light);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-item h5 {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-item h5:hover {
    background: var(--primary-dark);
}

.accordion-item p {
    padding: 1.5rem;
    margin: 0;
    color: var(--charcoal-light);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--neutral-color);
}

.gallery-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid var(--neutral-color);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 74, 107, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--charcoal-dark);
    color: var(--neutral-light);
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer hr {
    border-color: var(--charcoal-light);
    margin: 2rem 0;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--neutral-color);
    padding: 2rem 0;
    margin-top: 80px;
}

.breadcrumb-image {
    height: 40px;
    width: auto;
}

/* Additional Page Styles */
.page-section {
    padding: 4rem 0;
}

.element-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.element-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.element-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Space Page */
.space-content {
    min-height: 80vh;
    background: var(--neutral-light);
    margin-top: 80px;
}

/* Swiper Styles */
.swiper {
    padding-bottom: 3rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
