/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Pastel High Contrast */
    --primary-color: #6B73FF;
    --secondary-color: #9B59B6;
    --accent-color: #3498DB;
    --success-color: #2ECC71;
    --warning-color: #F39C12;
    
    /* Light/Dark Variations */
    --primary-light: #E8EAFF;
    --primary-dark: #4A52CC;
    --secondary-light: #F4ECFD;
    --secondary-dark: #7D3C98;
    --accent-light: #EBF5FE;
    --accent-dark: #2980B9;
    
    /* Neutral Colors */
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #ffffff;
}

.container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Conservative Typography */
h1, .display-4 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--gray-800);
}

h2, .h2 {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--gray-800);
}

h3, .h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--gray-700);
}

h4, .h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-700);
}

h5, .h5 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--gray-600);
}

h6, .h6 {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--gray-700);
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--gray-600);
}

.small {
    font-size: var(--font-size-small);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--gray-100) !important;
}

/* ===== CARDS & COMPONENTS ===== */
.card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-radius: 0.75rem;
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.card-img-top {
    border-radius: 0.75rem 0.75rem 0 0;
    height: 200px;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    height: 100%;
}

.service-card .card-body {
    padding: 1.5rem;
}

/* Price Cards */
.price-card {
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card.border-primary {
    border: 2px solid var(--primary-color) !important;
    position: relative;
}

.price-card.border-primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: var(--font-size-small);
    font-weight: 600;
}

/* Team Member Cards */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

/* Review Cards */
.review-card {
    background: white;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

/* FAQ Cards */
.faq-card {
    background: white;
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-sm);
}

/* Process Steps */
.process-step {
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Timeline Items */
.timeline-item {
    position: relative;
}

.timeline-year {
    font-size: var(--font-size-lg);
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

/* ===== FORMS ===== */
.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== CONTACT INFO ===== */
.contact-info h4 {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.contact-item {
    font-size: var(--font-size-base);
    color: var(--gray-700);
}

.contact-item i {
    color: var(--primary-color);
}

/* ===== GALLERY ===== */
#gallery img {
    transition: var(--transition);
    border-radius: 0.5rem;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    padding: 1rem 0;
}

.breadcrumb-image {
    height: 40px;
    width: auto;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--gray-900) !important;
}

footer h5, footer h6 {
    color: white;
    font-weight: 600;
}

footer p, footer .small {
    color: var(--gray-400);
}

footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: white;
}

footer hr {
    border-color: var(--gray-700);
}

/* ===== UTILITIES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-muted {
    color: var(--gray-500) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ===== ANIMATIONS (ScrollReveal) ===== */
.sr-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.sr-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .sr-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== ADDITIONAL PAGE SPECIFIC STYLES ===== */
/* Additional Page 1 Styles */
.consultation-item,
.collection-item,
.installation-item,
.maintenance-item,
.support-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.consultation-item:hover,
.collection-item:hover,
.installation-item:hover,
.maintenance-item:hover,
.support-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Additional Page 2 Styles */
.discovery-item,
.curation-item,
.approval-item,
.partnership-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.discovery-item:hover,
.curation-item:hover,
.approval-item:hover,
.partnership-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Space Page Styles */
#space {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

.space-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* ===== CONSERVATIVE MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: var(--font-size-3xl);
    }
    
    .lead {
        font-size: var(--font-size-base);
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: var(--font-size-base);
    }
    
    section {
        padding: 3rem 0;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
}

.hero-section h1 {
    padding-top: 125px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
