/* Modern Image Collage Section - CSS Variables */
:root {
    --collage-bg: #F8F9FA;
    --collage-primary: #dc143c;
    --collage-secondary: #385469;
    --collage-text: #2C3E50;
    --collage-light-text: #5A6C7D;
    --collage-white: #FFFFFF;
}

/* Image Collage Section */
.image-collage-section {
    position: relative;
    background: var(--collage-bg);
    padding: 100px 0;
    overflow: hidden;
}

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

.collage-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Side - Image Collage */
.collage-images-left {
    flex: 0 0 500px;
    position: relative;
    min-height: 550px;
}

.image-collage-container {
    position: relative;
    width: 100%;
    height: 550px;
}

/* Main Large Image - Blob Shape */
.collage-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: blobMorph 8s ease-in-out infinite;
}

.collage-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-main-image:hover img {
    transform: scale(1.05);
}

/* Secondary Image - Circle */
.collage-secondary-image {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 8px solid var(--collage-white);
    z-index: 3;
}

.collage-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-secondary-image:hover img {
    transform: scale(1.05);
}

/* Small Accent Image - Blob */
.collage-accent-image {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 180px;
    height: 180px;
    border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 6px solid var(--collage-white);
    z-index: 1;
    animation: blobMorph2 10s ease-in-out infinite;
}

.collage-accent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Elements */
.collage-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.collage-decoration {
    position: absolute;
}

.decoration-dots {
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.decoration-star {
    bottom: 100px;
    left: 30px;
    width: 40px;
    height: 40px;
    animation: rotate 15s linear infinite;
}

.decoration-shape {
    top: 50%;
    right: -20px;
    width: 50px;
    height: 50px;
    background: var(--collage-primary);
    opacity: 0.15;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 4s ease-in-out infinite 1s;
}

/* Right Side - Content */
.collage-content-right {
    flex: 1;
    max-width: 600px;
}

.collage-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--collage-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.collage-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--collage-secondary);
    margin-bottom: 25px;
    font-family: 'Poppins', 'Arial', sans-serif;
}

.collage-heading .highlight {
    color: var(--collage-primary);
}

.collage-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--collage-light-text);
    margin-bottom: 30px;
}

/* Feature List */
.collage-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.collage-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--collage-text);
}

.collage-features li .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--collage-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--collage-white);
    font-size: 12px;
    margin-top: 2px;
}

.collage-features li .text {
    flex: 1;
    font-weight: 500;
}

/* CTA Section */
.collage-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.collage-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--collage-primary);
    color: var(--collage-white);
}

.collage-btn:hover {
    background: #E88D4D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 159, 95, 0.4);
}

.collage-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.collage-btn:hover i {
    transform: translateX(5px);
}

.collage-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.collage-contact .icon-box {
    width: 50px;
    height: 50px;
    background: var(--collage-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--collage-white);
    font-size: 20px;
}

.collage-contact .contact-info {
    display: flex;
    flex-direction: column;
}

.collage-contact .contact-info span {
    font-size: 13px;
    color: var(--collage-light-text);
    margin-bottom: 2px;
}

.collage-contact .contact-info a {
    font-size: 18px;
    font-weight: 700;
    color: var(--collage-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.collage-contact .contact-info a:hover {
    color: var(--collage-primary);
}

/* Animations */
@keyframes blobMorph {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    25% {
        border-radius: 48% 52% 30% 70% / 28% 67% 33% 72%;
    }
    50% {
        border-radius: 73% 27% 46% 54% / 68% 46% 54% 32%;
    }
    75% {
        border-radius: 35% 65% 72% 28% / 48% 29% 71% 52%;
    }
}

@keyframes blobMorph2 {
    0%, 100% {
        border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
    }
    33% {
        border-radius: 68% 32% 48% 52% / 58% 72% 28% 42%;
    }
    66% {
        border-radius: 32% 68% 52% 48% / 72% 42% 58% 28%;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .collage-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .collage-images-left {
        flex: 0 0 auto;
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }

    .image-collage-container {
        height: 500px;
    }

    .collage-main-image {
        width: 340px;
        height: 340px;
    }

    .collage-secondary-image {
        width: 250px;
        height: 250px;
    }

    .collage-accent-image {
        width: 160px;
        height: 160px;
    }

    .collage-content-right {
        max-width: 100%;
        text-align: center;
    }

    .collage-heading {
        font-size: 38px;
    }

    .collage-features li {
        justify-content: center;
    }

    .collage-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .image-collage-section {
        padding: 60px 0;
    }

    .collage-images-left {
        max-width: 350px;
        min-height: 400px;
    }

    .image-collage-container {
        height: 400px;
    }

    .collage-main-image {
        width: 280px;
        height: 280px;
    }

    .collage-secondary-image {
        width: 200px;
        height: 200px;
        bottom: 20px;
    }

    .collage-accent-image {
        width: 130px;
        height: 130px;
        top: 40px;
        right: 20px;
    }

    .collage-heading {
        font-size: 32px;
    }

    .collage-description {
        font-size: 16px;
    }

    .collage-cta {
        flex-direction: column;
        width: 100%;
    }

    .collage-btn {
        width: 100%;
        justify-content: center;
    }

    .decoration-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .collage-heading {
        font-size: 28px;
    }

    .collage-tagline {
        font-size: 12px;
    }

    .collage-features li {
        font-size: 15px;
    }
}
