/* Services Pages CSS - Exhibition Stall, Interior Design, Architecture */

/* ========== General Styles ========== */
.ed-service-page {
    padding: 90px 0;
}

.ed-service-container {
    width: 100%;
    background: white;
}

/* ========== Content Sections ========== */
.ed-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8e8e8;
}

.ed-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ed-section-title {
    font-size: 2.2rem;
    color: #333;
    margin: 0 0 25px 0;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.ed-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e73a8c 0%, #ffb200 100%);
    border-radius: 2px;
}

.ed-section-subtitle {
    font-size: 1.5rem;
    color: #667eea;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.ed-section-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

/* ========== Overview Section with 2-Column Layout ========== */
.ed-overview-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e8e8e8;
}

.ed-overview-content {
    padding-right: 0px;
}

.ed-overview-content h2 {
    font-size: 30px;
    color: #333;
    margin: 0 0 30px 0;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.2;
}

.ed-overview-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #e73a8c 0%, #ffb200 100%);
    border-radius: 3px;
}

.ed-overview-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ed-overview-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.8s ease;
}

.ed-overview-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.ed-overview-image:hover img {
    transform: scale(1.05);
}

.ed-overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
    border-radius: 15px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ed-overview-content {
    animation: slideInLeft 0.8s ease;
}

/* ========== Key Features Grid ========== */
.ed-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.ed-features-list li {
    background: linear-gradient(135deg, #f5f7fa 0%, #f9f9fb 100%);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    letter-spacing: 1px;
    color: #333;
    border: 1px solid #e8e8e8;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ed-features-list li::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.ed-features-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    border-left-color: #764ba2;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.ed-features-list li strong {
    display: block;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ed-features-list li:nth-child(1) { border-left-color: #667eea; }
.ed-features-list li:nth-child(2) { border-left-color: #764ba2; }
.ed-features-list li:nth-child(3) { border-left-color: #ffb200; }
.ed-features-list li:nth-child(4) { border-left-color: #667eea; }
.ed-features-list li:nth-child(5) { border-left-color: #764ba2; }
.ed-features-list li:nth-child(6) { border-left-color: #ffb200; }
.ed-features-list li:nth-child(7) { border-left-color: #667eea; }
.ed-features-list li:nth-child(8) { border-left-color: #764ba2; }

.ed-features-list li:nth-child(1) strong { color: #667eea; }
.ed-features-list li:nth-child(2) strong { color: #764ba2; }
.ed-features-list li:nth-child(3) strong { color: #ffb200; }
.ed-features-list li:nth-child(4) strong { color: #667eea; }
.ed-features-list li:nth-child(5) strong { color: #764ba2; }
.ed-features-list li:nth-child(6) strong { color: #ffb200; }
.ed-features-list li:nth-child(7) strong { color: #667eea; }
.ed-features-list li:nth-child(8) strong { color: #764ba2; }

/* ========== Feature Cards ========== */
.ed-feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ed-feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #f9f9fb 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #e73a8c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ed-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #764ba2;
}

.ed-feature-card h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.ed-feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

/* ========== Process Steps ========== */
.ed-process-steps {
    margin: 60px 0;
    position: relative;
}

.ed-process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #ffb200 100%);
    transform: translateX(-50%);
}

.ed-process-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.ed-process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.ed-process-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.ed-process-number {
    background: linear-gradient(90deg, #e73a8c 0%, #ffb200 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: absolute;
    top: 0;
    right: -35px;
    z-index: 10;
    border: 4px solid white;
    transition: all 0.3s ease;
}

.ed-process-item:nth-child(even) .ed-process-number {
    right: auto;
    left: -35px;
}

.ed-process-item:hover .ed-process-number {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.ed-process-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #8d00ec;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ed-process-item:nth-child(2) .ed-process-content { border-left-color: #764ba2; }
.ed-process-item:nth-child(3) .ed-process-content { border-left-color: #ffb200; }
.ed-process-item:nth-child(4) .ed-process-content { border-left-color: #667eea; }
.ed-process-item:nth-child(5) .ed-process-content { border-left-color: #764ba2; }
.ed-process-item:nth-child(6) .ed-process-content { border-left-color: #ffb200; }

.ed-process-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.25);
}

.ed-process-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.ed-process-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* ========== Gallery/Portfolio Section ========== */
.ed-portfolio-section {
    margin: 50px 0;
    background: linear-gradient(135deg, #f9f9fb 0%, #f5f7fa 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
}

.ed-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ed-portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 25px;
}

.ed-portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ed-portfolio-item-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #e73a8c 0%, #ffb200 100%);
    border-radius: 12px;
    color: #fff;
    margin: 0 auto 15px;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.ed-portfolio-item:hover .ed-portfolio-item-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.ed-portfolio-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.ed-portfolio-item p {
    color: #666;
    line-height: 1.6;
    letter-spacing: 1px;
    margin: 0;
    font-size: 0.9rem;
}

/* ========== CTA Button ========== */
/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .ed-service-header {
        padding: 40px 20px;
        margin-bottom: 35px;
    }

    .ed-service-header h1 {
        font-size: 2rem;
    }

    .ed-service-header p {
        font-size: 0.95rem;
    }

    .ed-section-title {
        font-size: 1.6rem;
    }

    .ed-section-subtitle {
        font-size: 1.2rem;
    }

    .ed-feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ed-portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .ed-location-box {
        flex-direction: column;
        gap: 15px;
    }

    .ed-process-steps::before {
        left: 25px;
    }

    .ed-process-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 0 0 0 80px !important;
        margin-bottom: 45px;
    }

    .ed-process-item:nth-child(odd),
    .ed-process-item:nth-child(even) {
        left: 0 !important;
        text-align: left !important;
        padding: 0 0 0 80px !important;
    }

    .ed-process-number {
        left: -28px !important;
        right: auto !important;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .ed-process-content {
        border-left: 5px solid #667eea;
        padding: 25px;
        min-height: 140px;
    }

    .ed-process-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .ed-process-content p {
        font-size: 0.9rem;
    }

    .ed-cta-button {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .ed-overview-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ed-overview-content {
        padding-right: 0;
    }

    .ed-overview-content h2 {
        font-size: 2rem;
    }

    .ed-overview-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .ed-service-header {
        padding: 30px 15px;
        margin-bottom: 25px;
    }

    .ed-service-header h1 {
        font-size: 1.5rem;
        letter-spacing: 0;
    }

    .ed-service-header p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .ed-service-content {
        padding: 0 15px;
    }

    .ed-section-title {
        font-size: 1.3rem;
    }

    .ed-section-subtitle {
        font-size: 1.1rem;
    }

    .ed-feature-card {
        padding: 20px;
    }

    .ed-section-text {
        font-size: 0.9rem;
    }

    .ed-features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ed-features-list li {
        padding: 25px;
        font-size: 0.9rem;
    }

    .ed-process-steps::before {
        left: 18px;
    }

    .ed-process-item {
        padding: 0 0 0 70px !important;
        margin-bottom: 35px;
    }

    .ed-process-number {
        left: -10px !important;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-width: 3px;
    }

    .ed-process-content {
        padding: 20px;
        min-height: auto;
        border-left: 4px solid #667eea;
    }

    .ed-process-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .ed-process-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .ed-overview-image img {
        height: 250px;
    }
}

/* ========== Animations ========== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
