/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-color: #6B73FF;
    --primary-light: #9FA4FF;
    --primary-dark: #4A52CC;
    
    --secondary-color: #FF6B9D;
    --secondary-light: #FF9FB8;
    --secondary-dark: #CC4A73;
    
    --accent-color: #4ECDC4;
    --accent-light: #7DDED7;
    --accent-dark: #3BA39D;
    
    --warning-color: #FFD93D;
    --warning-light: #FFE066;
    --warning-dark: #CCAD31;
    
    --success-color: #6BCF7F;
    --success-light: #8FDC9F;
    --success-dark: #55A665;
    
    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --background-light: #F8F9FA;
    --background-white: #FFFFFF;
    --border-color: #E9ECEF;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    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;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

h4, h5, h6 {
    font-size: 1.25rem;
}

p {
    font-size: 16px;
    margin-bottom: 1rem;
}

/* Conservative navbar brand size */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    background: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
#hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape-blob-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50% 40% 60% 30%;
    top: 10%;
    right: 10%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 60% 30% 50% 40%;
    bottom: 20%;
    left: 5%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== CARDS ===== */
.card {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

/* ===== SERVICES SECTION ===== */
#services .card {
    position: relative;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

#services ul {
    list-style: none;
    padding-left: 0;
}

#services li {
    padding: 5px 0;
    color: var(--text-light);
}

#services li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
}

/* ===== FEATURES SECTION ===== */
.feature-item {
    padding: 30px;
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

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

/* ===== PRICE PLAN SECTION ===== */
#priceplan .card.border-primary {
    border: 3px solid var(--primary-color);
    position: relative;
}

#priceplan .card.border-primary::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

/* ===== TEAM SECTION ===== */
#team .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* ===== REVIEWS SECTION ===== */
#reviews .card {
    background: var(--background-light);
}

#reviews .blockquote-footer {
    margin-top: 15px;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    position: relative;
    padding: 20px;
}

.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: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* ===== TIMELINE SECTION ===== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.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: 40px 0;
    padding: 20px;
    background: var(--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: 55%;
}

.timeline-item:nth-child(even) {
    margin-right: 55%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 25px;
}

.timeline-item:nth-child(odd)::before {
    left: -35px;
}

.timeline-item:nth-child(even)::before {
    right: -35px;
}

/* ===== CORE INFO SECTION ===== */
.info-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

/* ===== RESEARCH STATS ===== */
.research-stat {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===== SESSION PHASES ===== */
.session-phase {
    text-align: center;
    padding: 20px;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* ===== MEDIUM CARDS ===== */
.medium-card {
    padding: 20px;
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.medium-card img {
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===== COMMUNITY FEATURES ===== */
.community-feature {
    padding: 20px;
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.community-feature img {
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===== CRISIS CARDS ===== */
.crisis-card {
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

/* ===== EDUCATION ITEMS ===== */
.education-item {
    text-align: center;
    padding: 20px;
    background: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.item-icon {
    margin-bottom: 20px;
}

/* ===== CONTACT SECTION ===== */
#contacts {
    background: var(--background-light);
}

.contact-info {
    padding: 40px 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary-color);
    width: 20px;
}

/* ===== FORM STYLES ===== */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* ===== GALLERY SECTION ===== */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
#footer {
    background: var(--text-dark);
    color: var(--background-light);
}

#footer h5, #footer h6 {
    color: white;
}

#footer a {
    color: var(--background-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--accent-color);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    padding-top: 80px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
}

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

.bg-light {
    background-color: var(--background-light);
}

/* ===== ANIMATIONS (Conservative) ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE HELPERS ===== */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 50px;
        margin-right: 0;
    }
    
    .timeline-item::before {
        left: -35px;
    }
    
    .timeline-item:nth-child(even)::before {
        left: -35px;
        right: auto;
    }
} 


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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

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

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
