:root {
    /* Primary Color Palette - High contrast pastels */
    --primary-color: #6967f5;
    --secondary-color: #03c085;
    --accent-color: #ffaa00;
    --info-color: #4973de;
    --success-color: #088773;
    
    /* Light/Dark Shades */
    --primary-light: #adb6f5;
    --primary-dark: #492fca;
    --secondary-light: #7efabc;
    --secondary-dark: #0a7052;
    --accent-light: #ffca21;
    --accent-dark: #c88413;
    --info-light: #82ceff;
    --info-dark: #142de2;
    --success-light: #2ddc87;
    --success-dark: #02613d;
    
    /* Neutral Colors */
    --light-bg: #f8fafc;
    --dark-bg: #2f3d54;
    --text-primary: #28344b;
    --text-secondary: #6f7478;
    --white: #ffffff;
    --border-color: #eff3f7;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    font-size: 16px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    backdrop-filter: blur(14px);
    padding: 1rem 0;
    box-shadow: 0 7px 24px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.62rem !important;
    color: var(--white) !important;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-light) !important;
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../ZUG_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

#hero h3 {
    font-size: 1.57rem;
    color: var(--secondary-dark);
    margin-bottom: 1.69rem;
}

#hero p {
    font-size: 1.20rem;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.bg-light {
    background: var(--light-bg) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.55rem;
    color: var(--primary-color);
}

h4 {
    font-size: 1.41rem;
    color: var(--secondary-color);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Feature Cards */
.feature-card, .feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 19px;
    box-shadow: 0 14px 27px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover, .feature-item:hover {
    transform: translateY(-14px);
    box-shadow: 0 29px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-light);
}

.feature-card i, .feature-item i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover i, .feature-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-17px);
    box-shadow: 0 21px 50px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-size: 1.64rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 11px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 110, 227, 0.10);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 29px rgba(89, 87, 220, 0.30);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

/* Contact Info */
#contacts .col-md-4 i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#contacts .col-md-4 p {
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
footer {
    background: var(--dark-bg) !important;
    color: var(--white);
}

footer h5, footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-light);
}

footer ul li {
    margin-bottom: 0.70rem;
}

footer hr {
    border-color: var(--text-secondary);
    margin: 2rem 0 1rem;
}

#site-copyright {
    color: var(--text-secondary);
    font-size: 1.03rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

/* Price Plan Cards */
.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.price-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    margin-bottom: 1rem;
}

/* Review Cards */
.review-card {
    background: var(--white);
    border-radius: 17px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 19px 40px rgba(0,0,0,0.15);
}

.review-stars {
    color: var(--accent-color);
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* Case Study Cards */
.case-study-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.case-study-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.64rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 20px rgba(125, 113, 239, 0.30);
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin: 0 2rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(107, 101, 252, 0.30);
}

.timeline-item > div:not(.timeline-year) {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* Career Cards */
.career-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.career-type {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.92rem;
    font-weight: 600;
}

/* Info Cards */
.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card .card-body {
    padding: 1.5rem;
}

/* FAQ Accordion */
.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(100, 121, 225, 0.25);
}

/* Gallery */
.gallery-img {
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer Updates */
#site_disclaimer {
    color: var(--text-secondary);
    font-size: 0.94rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    #hero h3 {
        font-size: 1.29rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: -25px;
        margin: 0;
        width: 50px;
        height: 50px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
} 


/* 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;
}

.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;
    }
}
