/* --- Footer Section --- */
.site-footer {
    position: relative;
    width: 100%;
    background-color: #fff;
    background-image: 
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 40px 40px; /* Grid effect */
    padding: 80px 5% 40px 5%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-family: 'gogh-regular', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem); /* Slightly larger font */
    color: #650c30;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1400px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title-line {
    display: block;
    font-weight: 300;
}

.title-line.line-right {
    font-weight: 700;
}

.footer-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 60px;
    flex-wrap: nowrap; /* Prevent wrapping on desktop if possible */
    gap: 20px;
}

/* Center Image & Circle */
.footer-center-group {
    position: relative;
    width: 400px; /* Adjusted size for better fit */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    flex-shrink: 0;
}

.footer-center-img {
    position: relative;
    z-index: 2;
    width: 115%; /* Adjusted relative size */
    height: auto;
    object-fit: contain;
    transform: translateY(5px); 
}

/* Left Side */
.footer-left-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduced gap */
    position: relative;
    flex: 1;
    justify-content: flex-end; /* Push towards center */
    padding-right: 20px; /* Add spacing from center image */
    align-self: flex-start; /* Align to top */
    margin-top: 110px; /* Push down to align with image center visually */
}

.megaphone-container {
    position: relative;
    width: 200px; /* Balanced size */
    margin-left: -20px !important;
    transform: translateX(-30px);
}

.megaphone-img {
    width: 100%;
    height: auto;
    transform: rotate(-15deg);
}

.dotted-line-svg {
    position: absolute;
    top: 50%;
    left: 50%; /* Adjusted position */
    width: 120px;
    height: 60px;
    z-index: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

/* Info Boxes */
.info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-box {
    margin-left: -45px;
}

.address-box {
    margin-left: 10px;
}

.info-label {
    background-color: #9665A0;
    color: #fff;
    padding: 5px 15px;
    font-size: 1.1rem;
    font-weight: medium;
    text-transform: uppercase;
    margin-bottom: 5px;
    position: relative;
    font-family: 'gogh-regular', sans-serif;
    margin-left: 15px;
}

/* Add little dots to label corners if needed to match "crop marks" style in image */
.info-label::before, .info-label::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #ccc;
    border-radius: 50%;
}
.info-label::before { top: -2px; left: -2px; }
.info-label::after { bottom: -2px; right: -2px; }

.info-text {
    font-size: 1.1rem;
    color: #000;
    font-weight: 300;
    line-height: 1.4;
    font-family: 'gogh-regular', sans-serif;
    white-space: nowrap; /* Prevent text wrapping */
    margin-top: 15px;
    padding-left: 15px; /* Align with label text */
}

/* Right Side */
.footer-right-group {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start; /* Push towards center */
    padding-left: 20px; /* Add spacing from center image */
    align-self: flex-start; /* Align to top */
    margin-top: 136px; /* Push down to align with image center visually */
}

/* Bottom Bar */
.footer-bottom-bar {
    width: 100%;
    display: flex;
    justify-content: center; /* Center logo */
    align-items: flex-end;
    margin-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 20px;
    right: 0;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:nth-child(1) { background-color: #000; } /* LinkedIn */
.social-icon:nth-child(2) { background: #000; } /* Instagram */
.social-icon:nth-child(3) { background-color: #000; } /* Facebook */

/* Made In Ebiz Strip */
.made-in-ebiz-strip {
    position: absolute;
    right: 0;
    top: 45%;
    background-color: #dcdcdc;
    padding: 20px 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.1rem;
    font-weight: medium;
    color: #747476;
    letter-spacing: 2px;
    height: auto;
    font-family: 'gogh-regular', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-visual-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left-group, .footer-right-group {
        align-self: center;
        margin-top: 0;
        justify-content: center;
        padding: 0;
        width: 100%;
    }
    
    .dotted-line-svg {
        display: none;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        position: relative;
        
    }
    
    .social-icons {
        position: relative;
        bottom: auto;
        right: auto;
    }
    
    .made-in-ebiz-strip {
        display: none; /* Hide on mobile */
    }
}

/* Work Link Style */
.work-link {
    font-family: 'gogh-regular', sans-serif;
    font-size: 1.1rem;
    color: #650c30;
    text-decoration: none;
    border-bottom: none; /* Removed underline */
    margin-top: 15px; 
    margin-left: 15px; /* Align with label text */
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.work-link:hover {
    opacity: 0.8;
    transform: translateX(5px); /* Subtle movement */
}

/* Specific spacing for contact info */
.phone-text {
    margin-bottom: 10px; /* Increased space between phone and email */
}

.email-text {
    margin-top: 0 !important; /* Override default margin */
    margin-bottom: 5px;
}