/* ============================
   CSS VARIABLES - Color Palette
   ============================ */
:root {
    /* Primary Colors */
    --primary-color: #6381e0;
    --secondary-color: #6b3995;
    --accent-color: #ffe2ca;
    --neutral-color: #f1a4f2;
    --highlight-color: #41e3b4;
    
    /* Light/Dark Shades */
    --primary-light: #a0a3eb;
    --primary-dark: #3763d6;
    --secondary-light: #8669b8;
    --secondary-dark: #451b5a;
    --accent-light: #f4eee1;
    --accent-dark: #d2b99f;
    --neutral-light: #ebcaed;
    --neutral-dark: #d064e5;
    --highlight-light: #70f5cc;
    --highlight-dark: #188f66;
    
    /* Text Colors */
    --text-primary: #304a5a;
    --text-secondary: #7b8791;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #151719;
}

/* ============================
   GENERAL STYLES
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================
   TYPOGRAPHY - Conservative Sizes
   ============================ */
h1 {
    font-size: 2.33rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h2 {
    font-size: 2.02rem;
    font-weight: 600;
    margin-bottom: 0.95rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.54rem;
    font-weight: 500;
    margin-bottom: 0.84rem;
    color: var(--text-secondary);
}

h4 {
    font-size: 1.36rem;
    font-weight: 500;
    margin-bottom: 0.81rem;
    color: var(--text-primary);
}

h5 {
    font-size: 1.18rem;
    font-weight: 500;
    margin-bottom: 0.74rem;
    color: var(--text-primary);
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.62rem;
    color: var(--text-primary);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============================
   NAVBAR - Conservative Logo Size
   ============================ */
.navbar-brand {
    font-size: 10px !important;
    font-size: 1.52rem !important;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: color 0.82s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Navbar scrolled state */
.navbar-scrolled {
    background-color: rgba(248, 249, 250, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 2.58rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-top: 200px;
}

.hero-section h2 {
    font-size: 1.58rem;
    color: var(--accent-light);
    margin-bottom: 1.60rem;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    transition: all 0.82s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================
   CARDS
   ============================ */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.82s ease, box-shadow 0.82s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 1.5rem;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.82s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* ============================
   PRICING CARDS
   ============================ */
.card.border-primary {
    border: 3px solid var(--primary-color) !important;
    position: relative;
}

.card.border-primary::before {
    content: "Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 1.02rem;
    font-weight: 600;
}

/* ============================
   SECTIONS
   ============================ */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* ============================
   ICONS
   ============================ */
.fa-3x {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fa-4x {
    margin-bottom: 1.63rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--highlight-color) !important;
}

.text-info {
    color: var(--neutral-color) !important;
}

.text-warning {
    color: var(--accent-dark) !important;
}

.text-danger {
    color: var(--secondary-color) !important;
}

/* ============================
   TEAM SECTION
   ============================ */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-light);
    transition: transform 0.82s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-light);
    transition: transform 0.82s ease;
}

.team-photo:hover {
    transform: scale(1.1);
}

/* ============================
   GALLERY
   ============================ */
.gallery img {
    transition: transform 0.82s ease, filter 0.82s ease;
    border-radius: 8px;
}

.gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ============================
   FOOTER
   ============================ */
footer {
    background-color: var(--bg-dark) !important;
    color: var(--text-light);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.82s ease;
}

footer a:hover {
    color: var(--primary-light);
}

/* ============================
   FORMS
   ============================ */
.form-control {
    border-radius: 8px;
    border: 2px solid #e1e3e5;
    padding: 0.75rem 1rem;
    transition: border-color 0.82s ease, box-shadow 0.82s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(95, 125, 235, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Focus styles for accessibility */
.focus-visible,
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================
   PROCESS SECTION
   ============================ */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ============================
   UTILITIES
   ============================ */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ============================
   BREADCRUMB
   ============================ */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.82s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

.breadcrumb-icon {
    height: 16px;
    width: auto;
}

/* ============================
   SPACE PAGE
   ============================ */
#space {
    min-height: 60vh;
    background: linear-gradient(45deg, var(--accent-light), var(--highlight-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   LIGHTBOX CUSTOMIZATION
   ============================ */
.lb-data .lb-close {
    background: var(--primary-color);
    border-radius: 50%;
}

/* ============================
   RESPONSIVE ADJUSTMENTS
   ============================ */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 200px;
}
    
    .hero-section h2 {
        font-size: 1.27rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
} 


/* 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;
    }
}
