/* consulting.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.consulting-page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 52, 62, 0.75) 100%),    
                url('https://5.imimg.com/data5/SELLER/Default/2021/10/FJ/ET/CZ/50529979/business-finance-consultancy-services-500x500.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.consulting-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.consulting-header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.consulting-page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.consulting-page-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.consulting-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.consulting-breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.consulting-breadcrumb-nav a:hover {
    color: #667eea;
}

.consulting-breadcrumb-nav span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Section */
.consulting-main-section {
    padding: 80px 0;
    background: #f5f7fa;
}

/* Introduction Section */
.consulting-intro-section {
    margin-bottom: 80px;
}

.intro-content {
    padding-right: 30px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.intro-icon i {
    font-size: 40px;
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3) 0%, rgba(102, 126, 234, 0.3) 100%);
    pointer-events: none;
}

/* Core Services Section */
.core-services-section {
    margin-bottom: 80px;
}

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

.section-title-center {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    border-top-color: #667eea;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: rotateY(360deg);
}

.service-card-icon i {
    font-size: 32px;
    color: white;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Detailed Services Section */
.detailed-services-section {
    margin-bottom: 80px;
}

.services-row {
    margin-bottom: 30px;
}

.detailed-service-block {
    background: white;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.detailed-service-block:hover {
    border-left-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.service-block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-block-icon i {
    font-size: 28px;
    color: white;
}

.service-block-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e3c72;
    line-height: 1.3;
}

.service-items-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f8f9ff;
    transform: translateX(5px);
}

.service-item i {
    color: #667eea;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-item span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Why Choose Us Section - COMPLETELY FIXED */
.why-choose-section {
    margin-bottom: 80px;
}

.why-choose-section .row {
    display: flex;
    align-items: stretch;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 550px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.why-choose-content {
    padding-left: 40px;
}

.features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

.cta-button i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .consulting-page-title {
        font-size: 36px;
    }

    .consulting-page-subtitle {
        font-size: 18px;
    }

    .section-title,
    .section-title-center {
        font-size: 30px;
    }

    .intro-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .why-choose-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .why-choose-image {
        min-height: 450px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .consulting-page-header {
        padding: 60px 0 40px;
    }

    .consulting-page-title {
        font-size: 28px;
    }

    .consulting-page-subtitle {
        font-size: 16px;
    }

    .consulting-main-section {
        padding: 50px 0;
    }

    .section-title,
    .section-title-center {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-block-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .detailed-service-block {
        padding: 25px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .why-choose-image {
        min-height: 350px;
    }

    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .consulting-page-title {
        font-size: 24px;
    }

    .consulting-page-subtitle {
        font-size: 14px;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
    }

    .intro-icon i {
        font-size: 30px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .service-card-icon i {
        font-size: 28px;
    }

    .service-block-icon {
        width: 50px;
        height: 50px;
    }

    .service-block-icon i {
        font-size: 24px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .why-choose-image {
        min-height: 280px;
    }
}

/* Print Styles */
@media print {
    .consulting-page-header,
    .cta-section {
        background: white;
        color: black;
    }

    .service-card,
    .detailed-service-block,
    .feature-item {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}