/* Services Page Styles */

/* What We Offer Section */
.what-we-offer-services {
    background: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 10px;
}

.what-we-offer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.offer-content-column {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.offer-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0c1b4d;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-description {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.offer-cta {
    margin-top: 40px;
}

.offer-btn {
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 0px solid #0c1b4d;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-btn:hover {
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    border-color: #1a3a8f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 27, 77, 0.3);
}

.offer-image-column {
    flex: 1;
    min-width: 300px;
}

.offer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.offer-image:hover {
    transform: scale(1.02);
}

/* Services Categories Section */
.services-categories-services {
    background: linear-gradient(135deg, #0c1b4d 0%, #1e3a8a 100%);
    padding: 80px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 50px;
}

.services-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-services {
        padding: 60px 15px;
    }
    
    .what-we-offer-container {
        gap: 40px;
        flex-direction: column;
    }
    
    .offer-title {
        font-size: 2.2rem !important;
        text-align: center;
    }
    
    .offer-description {
        font-size: 1rem !important;
        text-align: center;
    }
    
    .offer-cta {
        text-align: center;
        margin-top: 30px;
    }
    
    .offer-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .services-categories-services {
        padding: 60px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-title {
        font-size: 1.1rem !important;
    }
}

/* Expertly Designed Section */
.expertly-designed-services {
    background: #ffffff;
    padding: 80px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 20px;
}

.expertly-designed-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.design-image-column {
    flex: 1;
    min-width: 300px;
}

.design-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.design-image:hover {
    transform: scale(1.02);
}

.design-content-column {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.design-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0c1b4d;
    margin: 0 0 30px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.design-description {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.design-cta {
    margin-top: 40px;
}

.design-btn {
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 0px solid #0c1b4d;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.design-btn:hover {
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    border-color: #1a3a8f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 27, 77, 0.3);
}

/* Additional responsive adjustments for Expertly Designed section */
@media (max-width: 768px) {
    .expertly-designed-services {
        padding: 60px 15px;
    }
    
    .expertly-designed-container {
        gap: 40px;
        flex-direction: column;
    }
    
    .design-title {
        font-size: 2.2rem !important;
        text-align: center;
    }
    
    .design-description {
        font-size: 1rem !important;
        text-align: center;
    }
    
    .design-cta {
        text-align: center;
        margin-top: 30px;
    }
    
    .design-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Loft Conversion Process Section */
.loft-conversion-process-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: -200px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}

.process-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0c1b4d;
    margin: 0 0 60px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Flowchart Layout */
.process-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-top: 50px;
}

.flowchart-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 20px 0;
}

.flowchart-row.reverse {
    flex-direction: row-reverse;
}

/* Process Steps */
.process-step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(12, 27, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    min-width: 300px;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
    border-color: #0c1b4d;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 4px solid white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 10;
}

.step-icon {
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 2.2rem;
    color: #0c1b4d;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    color: #1a3a8f;
    transform: scale(1.2) rotate(5deg);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #0c1b4d;
    margin: 0;
    line-height: 1.3;
}

/* Arrow Styles */
.arrow-right {
    color: #0c1b4d;
    font-size: 2rem;
    animation: bounceRight 2s infinite;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.arrow-left {
    color: #0c1b4d;
    font-size: 2rem;
    animation: bounceLeft 2s infinite;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.arrow-right:hover, .arrow-left:hover {
    color: #1a3a8f;
    transform: scale(1.2);
}

.arrow-down-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 10px 0;
}

.arrow-down-container.arrow-down-right {
    justify-content: flex-end;
    padding-right: 50px;
}

.arrow-down-container.arrow-down-left {
    justify-content: flex-start;
    padding-left: 50px;
}

.arrow-down {
    color: #0c1b4d;
    font-size: 2rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    margin: 15px 0;
}

.arrow-down:hover {
    color: #1a3a8f;
    transform: scale(1.2);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(4px); }
}

@keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(-8px); }
    60% { transform: translateX(-4px); }
}

/* Process section responsive adjustments */
@media (max-width: 1024px) {
    .flowchart-row {
        max-width: 700px;
        gap: 15px;
    }
    
    .process-step {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .loft-conversion-process-services {
        padding: 60px 15px;
    }
    
    .process-main-title {
        font-size: 2.2rem !important;
    }
    
    .process-flowchart {
        margin-top: 40px;
    }
    
    .flowchart-row {
        flex-direction: column !important;
        gap: 15px;
        max-width: 100%;
    }
    
    .flowchart-row.reverse {
        flex-direction: column !important;
    }
    
    .arrow-right, .arrow-left {
        display: none;
    }
    
    .arrow-down-container {
        display: flex !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 15px 0;
    }
    
    .process-step {
        min-width: 250px;
        max-width: 300px;
        padding: 20px 15px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: -8px;
        right: -8px;
    }
}
