:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-color: #6B73FF;
    --primary-light: #9DA4FF;
    --primary-dark: #4A52CC;
    
    --secondary-color: #7B8F7E;
    --secondary-light: #A8C2AB;
    --secondary-dark: #5A6B5D;
    
    --accent-color: #FFB366;
    --accent-light: #FFCC99;
    --accent-dark: #CC8F52;
    
    --neutral-color: #E8E8E8;
    --neutral-light: #F5F5F5;
    --neutral-dark: #CCCCCC;
    
    --earth-color: #D4A574;
    --earth-light: #E6C19C;
    --earth-dark: #B8904F;
    
    /* Typography */
    --font-family-primary: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-semibold);
}

.h3 {
    font-size: 1.5rem;
}

.h4 {
    font-size: 1.25rem;
}

.h5 {
    font-size: 1.1rem;
}

.h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: var(--font-weight-normal);
}

.small {
    font-size: 0.875rem;
}

/* Header Styles */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: var(--font-weight-medium);
    color: #333;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.hero-cta .btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--neutral-light);
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-color);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card ul {
    text-align: left;
    color: #666;
}

/* Price Cards */
.price-card {
    position: relative;
    transition: all 0.3s ease;
}

.price-card.border-primary {
    border: 2px solid var(--primary-color);
}

.price-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Team Cards */
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}

/* Review Cards */
.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.stars i {
    font-size: 0.875rem;
    margin-right: 0.125rem;
}

/* Process Steps */
.process-step {
    position: relative;
    transition: all 0.3s ease;
}

.step-number {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* Timeline Items */
.timeline-item {
    transition: all 0.3s ease;
}

.year-badge {
    transition: all 0.3s ease;
}

.timeline-item:hover .year-badge {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--neutral-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.125rem rgba(107, 115, 255, 0.25);
}

.contact-form .btn {
    padding: 0.75rem 2rem;
}

/* Footer Styles - High Contrast */
#footer {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

#footer h5,
#footer h6 {
    color: #ffffff !important;
    font-weight: 600 !important;
}

#footer p,
#footer .small {
    color: #f0f0f0 !important;
}

#footer .small {
    color: #e0e0e0 !important;
}

#footer a {
    color: #93c5fd !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #dbeafe !important;
}

#footer a:focus {
    outline: 2px solid #93c5fd !important;
    outline-offset: 2px !important;
}

#footer ul li {
    margin-bottom: 8px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    #footer {
        background-color: #000000 !important;
    }
    
    #footer h5,
    #footer h6,
    #footer p,
    #footer .small {
        color: #ffffff !important;
    }
    
    #footer a {
        color: #ffffff !important;
        text-decoration: underline !important;
        border: 1px solid #ffffff !important;
        padding: 2px 4px !important;
    }
}



/* Gallery Styles */
#gallery img {
    transition: all 0.3s ease;
    border-radius: var(--border-radius-md);
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* FAQ Cards */
.faq-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-medium);
}

/* Breadcrumb Styles */
.breadcrumb-section {
    padding: 1rem 0;
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

/* Additional Styles for Additional Pages */
.story-card,
.guide-card,
.artisan-profile,
.community-story,
.technique-item,
.impact-card,
.carbon-card,
.certification-card,
.innovation-card,
.material-item,
.info-card,
.career-card {
    transition: all 0.3s ease;
}

.story-card:hover,
.guide-card:hover,
.artisan-profile:hover,
.community-story:hover,
.impact-card:hover,
.carbon-card:hover,
.certification-card:hover,
.innovation-card:hover,
.career-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.technique-item:hover,
.material-item:hover,
.info-card:hover {
    transform: translateY(-2px);
}

.technique-item i,
.material-item i,
.info-card i {
    transition: all 0.3s ease;
}

.technique-item:hover i,
.material-item:hover i,
.info-card:hover i {
    transform: scale(1.1);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    #footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
