/* Color Variables */
:root {
    --primary-color: #1e4799;
    --primary-light: #4b72c4;
    --primary-dark: #193f67;
    --secondary-color: #dfa101;
    --secondary-light: #ffaa44;
    --secondary-dark: #d5922a;
    --accent-color: #2da16d;
    --accent-light: #4dea76;
    --accent-dark: #169039;
    --neutral-color: #32566b;
    --neutral-light: #515e65;
    --neutral-dark: #242f3b;
    --success-color: #3ab046;
    --info-color: #2b96c2;
    --warning-color: #ffb200;
    --danger-color: #c8404e;
    --light-color: #f8f9fa;
    --dark-color: #2a3035;
    --white: #ffffff;
    --text-dark: #28374b;
    --text-muted: #6a6e72;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

/* 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-dark);
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        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;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.52rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.87rem; }
h4 { font-size: 1.53rem; }
h5 { font-size: 1.37rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Header Styles */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 3px 13px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.59rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../PIN_images/hero-negotiation.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.65rem;
    color: white;
}

.hero-section h2 {
    font-size: 1.58rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.hero-section p {
    font-size: 1.23rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 13px;
    box-shadow: 0 119px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 26px rgba(0,0,0,0.15);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 7px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 38px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.service-card img {
    border-radius: 11px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-card h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card .price {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* Price Cards */
.price-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 17px;
    box-shadow: 0 9px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.price-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.04rem;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-11px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.price-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.price-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.price-amount {
    background: var(--gradient-secondary);
    color: white;
    padding: 1.5rem;
    border-radius: 11px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.60rem;
}

/* Team Members */
.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--secondary-color);
}

.team-member h5 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.team-member p {
    color: var(--text-muted);
    font-size: 1.02rem;
}

/* Review Cards */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 25px rgba(0,0,0,0.15);
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.review-card h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: var(--gradient-accent);
    color: white;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.case-study-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.case-study-card p {
    color: rgba(255,255,255,0.9);
}

/* Process Steps */
.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.62rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Timeline Items */
.timeline-item {
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-year {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.career-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-card .badge {
    margin-top: 1rem;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

/* FAQ Cards */
.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--info-color);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.form-control {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(42, 92, 176, 0.25);
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.67rem;
}

footer a {
    color: #a8b1be;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

footer p {
    color: #aeaeae;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background: var(--gradient-primary) !important; }
.bg-secondary { background: var(--gradient-secondary) !important; }
.bg-accent { background: var(--gradient-accent) !important; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Feature Items */
.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.62rem;
}

/* Additional Card Styles */
.timeline-item {
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-year {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.career-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-card .badge {
    margin-top: 1rem;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

/* FAQ Cards */
.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--info-color);
    cursor: pointer;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.faq-card h5::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.53rem;
    transition: transform 0.3s ease;
}

.faq-card.active h5::after {
    content: '';
    transform: rotate(180deg);
}

.faq-card p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: 0;
}

.faq-card.active p {
    margin-bottom: 1rem;
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Image Resolution Specifications */
/* Hero Images */
img[src*="hero-negotiation"] {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

img[src*="breadcrumb-arrow"] {
    width: 50px;
    height: 20px;
    object-fit: contain;
}

/* Service Images */
img[src*="service-basics"], 
img[src*="service-advanced"], 
img[src*="service-executive"], 
img[src*="service-team"], 
img[src*="service-online"], 
img[src*="service-custom"] {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Team Images */
img[src*="team_1"], 
img[src*="team_2"], 
img[src*="team_3"], 
img[src*="team_4"], 
img[src*="team_5"] {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* Blog Images */
img[src*="blog-1"], 
img[src*="blog-2"], 
img[src*="blog-3"] {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Gallery Images */
img[src*="gallery-1"], 
img[src*="gallery-2"], 
img[src*="gallery-3"], 
img[src*="gallery-4"], 
img[src*="gallery-5"], 
img[src*="gallery-6"], 
img[src*="gallery-7"], 
img[src*="gallery-8"] {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background: rgba(248, 249, 250, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Space Page Styling */
#space {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

#space::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../PIN_images/hero-negotiation.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

#space .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--light-color);
    padding: 1rem 0;
    border-bottom: 1px solid #e6eff6;
}

/* Lightbox Customization */
.lb-data .lb-close {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Image Loading States */
img {
    transition: opacity 0.3s ease;
}

img:not(.loaded) {
    opacity: 0.7;
}

img.loaded {
    opacity: 1;
}

img[data-error="true"] {
    background-color: #f8f9fa !important;
    border: 2px dashed #e1e6eb;
    min-height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus,
.form-control:focus,
.navbar-toggler:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(51, 84, 179, 0.25);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #11007c;
        --secondary-color: #ff8709;
        --accent-color: #037501;
        --text-dark: #000000;
        --text-muted: #3d3d3d;
    }
}

/* Print Optimization */
@media print {
    .navbar, .btn, footer, .back-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black !important;
    }
    
    .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
        background: none !important;
        color: black !important;
        padding: 2rem 0;
    }
    
    .hero-section h1,
    .hero-section h2,
    .hero-section p {
        color: black !important;
    }
    
    .feature-card,
    .service-card,
    .price-card,
    .review-card,
    .case-study-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ececec;
        margin-bottom: 1rem;
    }
} 


/* 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);
}

.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;
    }
}
