/* CSS Variables - 5 Primary Colors Plus Shades */
:root {
    --primary-purple: #5a5ae0;
    --primary-purple-light: #8497fe;
    --primary-purple-dark: #483dd3;
    
    --primary-teal: #027b76;
    --primary-teal-light: #0ca17f;
    --primary-teal-dark: #178d87;
    
    --primary-coral: #f8971a;
    --primary-coral-light: #f06727;
    --primary-coral-dark: #db480a;
    
    --primary-rose: #dc2e54;
    --primary-rose-light: #dc4446;
    --primary-rose-dark: #af0c40;
    
    --primary-emerald: #0c7d66;
    --primary-emerald-light: #03b372;
    --primary-emerald-dark: #118b55;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #dadada;
    --neutral-300: #f0f4f8;
    --neutral-400: #8493b8;
    --neutral-500: #667594;
    --neutral-600: #515b76;
    --neutral-700: #263046;
    --neutral-800: #202637;
    --neutral-900: #0a1424;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    --gradient-secondary: linear-gradient(135deg, var(--primary-coral), var(--primary-rose));
    --gradient-accent: linear-gradient(135deg, var(--primary-emerald), var(--primary-purple));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--neutral-50);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-800);
}

h1 { font-size: 2.54rem; }
h2 { font-size: 2.04rem; }
h3 { font-size: 1.54rem; }
h4 { font-size: 1.34rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1.10rem; }

p {
    font-size: 1.10rem;
    margin-bottom: 1.08rem;
}

/* Header */
.header-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.54rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-600) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--neutral-100);
    padding: 1rem 0;
}

.breadcrumb-icon {
    width: 21px;
    height: 20px;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../WIL_images/hero-coworking.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 0;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    margin-bottom: 3.23rem;
}

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.68rem;
}

.section-header h3 {
    color: var(--neutral-600);
    font-weight: 400;
    margin-bottom: 1.08rem;
}

/* Cards and Components */
.feature-card, .service-card, .element-card, .info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .element-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.54rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.08rem;
}

/* Service Cards */
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.08rem;
}

.service-price {
    font-size: 1.54rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-top: 1.18rem;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.price-card .price {
    font-size: 2.54rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-card.featured li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Team Section */
.team-member {
    text-align: center;
    padding: 1rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.08rem;
    border: 5px solid var(--primary-purple-light);
}

/* Reviews Slider */
.reviews-swiper {
    padding: 2rem 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin: 1rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.54rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2.10rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-purple);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 7px solid var(--neutral-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(97, 114, 255, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gradient-primary);
}

/* FAQ */
.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-purple-light);
    color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1.08rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Gallery */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Blog */
.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* Footer */
.footer-section {
    background: var(--neutral-800);
    color: var(--neutral-300);
    padding: 3rem 0 1rem;
    margin-top: 4.17rem;
}

.footer-section h5 {
    color: white;
    margin-bottom: 1.08rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.68rem;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple-light);
}

/* Space Container */
.space-container {
    min-height: 60vh;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.34rem;
}

/* Case Study Cards */
.case-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-coral);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-emerald);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

/* Utility Classes */
.page-section {
    padding: 4rem 0;
}

.page-section:nth-child(even) {
    background: var(--neutral-100);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.04rem; }
    h2 { font-size: 1.85rem; }
    h3 { font-size: 1.34rem; }
    
    .hero-section {
  padding-top: 50px;
        min-height: 80vh;
        text-align: center;
    }
    
    .price-card.featured {
        transform: none;
        margin-top: 1.18rem;
    }
    
    .team-photo {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.34rem;
    }
    
    .timeline-item::before {
        display: none;
    }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
