:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #8b5cf6;
    --text-color: #ffffff;
    --background: #131313;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    height: 120px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    background: linear-gradient(45deg, var(--white), #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 1;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.progress-container {
    margin: 2rem auto;
    position: relative;
    max-width: 300px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-text-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-percentage {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Loading animation */
@keyframes loadingDots {
    0%, 20% {
        content: "LOADING";
    }
    40% {
        content: "LOADING.";
    }
    60% {
        content: "LOADING..";
    }
    80%, 100% {
        content: "LOADING...";
    }
}

.loading-text::after {
    content: "";
    animation: loadingDots 1.5s infinite;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Brand colors for social links */
.social-link[href*="facebook"] {
    background: rgba(66, 103, 178, 0.9);
}

.social-link[href*="facebook"]:hover {
    background: rgb(66, 103, 178);
    box-shadow: 0 5px 15px rgba(66, 103, 178, 0.4);
}

.social-link[href*="instagram"] {
    background: rgba(225, 48, 108, 0.9);
}

.social-link[href*="instagram"]:hover {
    background: rgb(225, 48, 108);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-link[href*="linkedin"] {
    background: rgba(0, 119, 181, 0.9);
}

.social-link[href*="linkedin"]:hover {
    background: rgb(0, 119, 181);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.social-link[href*="mailto"] {
    background: rgba(234, 67, 53, 0.9);
}

.social-link[href*="mailto"]:hover {
    background: rgb(234, 67, 53);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.4);
}

/* Mobile Social Media FAB */
.mobile-social-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.mobile-social-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.95);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.mobile-social-toggle:hover {
    background: rgba(99, 102, 241, 1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.mobile-social-toggle i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.mobile-social-toggle.active i {
    transform: rotate(45deg);
}

.mobile-social-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-social-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-social-menu .social-link {
    margin: 0;
    width: 45px;
    height: 45px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .content {
        padding: 1.5rem;
        margin: 0;
        border-radius: 15px;
        width: 100%;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }

    .logo {
        height: 80px;
    }

    .logo-glow {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .countdown-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
        margin: 1.5rem auto;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .countdown-card {
        width: 65px;
        height: 65px;
        flex: 1;
        min-width: 0;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .countdown-svg {
        width: 65px;
        height: 65px;
    }

    .countdown-circle-bg,
    .countdown-circle-progress {
        stroke-width: 3;
    }

    .progress-container {
        max-width: 280px;
        padding: 0 10px;
    }

    .loading-text {
        font-size: 0.75rem;
    }

    .progress-percentage {
        font-size: 0.75rem;
    }

    .social-links {
        display: none;
    }

    .mobile-social-fab {
        display: block;
        bottom: 15px;
        right: 15px;
    }

    .mobile-social-toggle {
        width: 45px;
        height: 45px;
    }

    .mobile-social-menu {
        bottom: 50px;
        right: 0;
    }

    .mobile-social-menu .social-link {
        width: 40px;
        height: 40px;
        animation: slideIn 0.3s ease forwards;
    }

    .mobile-social-menu .social-link i {
        font-size: 18px;
    }

    .mobile-social-menu .social-link:nth-child(1) { animation-delay: 0.1s; }
    .mobile-social-menu .social-link:nth-child(2) { animation-delay: 0.2s; }
    .mobile-social-menu .social-link:nth-child(3) { animation-delay: 0.3s; }
    .mobile-social-menu .social-link:nth-child(4) { animation-delay: 0.4s; }

    .crafting-footer {
        bottom: 15px;
        padding: 0 1rem;
    }

    .crafting-footer p {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .heart {
        font-size: 0.9rem;
    }

    .company-message-btn {
        left: 15px;
        right: auto;
        bottom: 15px;
        padding: 8px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .company-message-btn .btn-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .company-message-btn .btn-text {
        opacity: 0;
        transform: translateX(-100%);
        position: relative;
        pointer-events: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        margin-left: -5px;
    }

    .company-message-btn:hover,
    .company-message-btn:focus {
        width: 200px;
        padding: 8px 20px 8px 8px;
        border-radius: 50px;
        background: rgba(99, 102, 241, 1);
    }

    .company-message-btn:hover .btn-text,
    .company-message-btn:focus .btn-text {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .modal-brand-icon {
        width: 28px;
        height: 28px;
    }

    .modal h2 {
        font-size: 18px;
    }

    .modal h3 {
        font-size: 15px;
    }

    .modal-section {
        padding: 10px 12px;
    }

    .modal-section p,
    .modal-list li {
        font-size: 13px;
    }

    .modal-list li {
        padding: 8px 10px;
    }

    .modal-footer {
        font-size: 13px;
        padding: 10px;
    }

    /* Ensure mobile menu items don't overlap */
    .mobile-social-menu {
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .logo {
        height: 60px;
    }

    .logo-glow {
        width: 80px;
        height: 80px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 0.9rem;
    }

    .countdown-container {
        gap: 8px;
        padding: 0 5px;
    }
    
    .countdown-card {
        width: 55px;
        height: 55px;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }

    .countdown-svg {
        width: 55px;
        height: 55px;
    }

    .countdown-circle-bg,
    .countdown-circle-progress {
        stroke-width: 2.5;
    }

    .mobile-social-fab {
        bottom: 10px;
        right: 10px;
    }

    .mobile-social-toggle {
        width: 40px;
        height: 40px;
    }

    .mobile-social-toggle i {
        font-size: 20px;
    }

    .mobile-social-menu {
        bottom: 50px;
    }

    .mobile-social-menu .social-link {
        width: 35px;
        height: 35px;
    }

    .mobile-social-menu .social-link i {
        font-size: 16px;
    }

    .crafting-footer {
        bottom: 10px;
    }

    .crafting-footer p {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .progress-container {
        max-width: 240px;
        padding: 0 10px;
    }

    .loading-text-container {
        gap: 10px;
    }

    .loading-text {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .progress-percentage {
        font-size: 0.7rem;
    }

    .progress-bar {
        height: 1.5px;
    }

    .company-message-btn {
        left: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        padding: 6px;
        gap: 8px;
        box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
    }

    .company-message-btn:hover,
    .company-message-btn:focus {
        width: 180px;
        padding: 6px 16px 6px 6px;
        box-shadow: 0 6px 14px rgba(99, 102, 241, 0.3);
    }

    .company-message-btn .btn-icon {
        width: 28px;
        height: 28px;
    }

    .company-message-btn .btn-text {
        font-size: 14px;
        margin-left: -3px;
    }
}

@media (max-width: 360px) {
    .countdown-container {
        gap: 5px;
    }
    
    .countdown-card {
        width: 50px;
        height: 50px;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }

    .countdown-svg {
        width: 50px;
        height: 50px;
    }
}

/* Landscape mode adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 0.5rem;
    }
    
    .content {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo-container {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .countdown-container {
        flex: 0 0 auto;
        margin: 0;
    }

    .countdown-card {
        width: 60px;
        height: 60px;
    }

    .countdown-svg {
        width: 60px;
        height: 60px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .mobile-social-fab {
        bottom: 10px;
        right: 10px;
    }
}

/* Prevent text selection on mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    a, button {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-card {
    position: relative;
    width: 120px;
    height: 120px;
}

.countdown-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.countdown-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-circle-bg {
    fill: none;
    stroke: var(--glass-bg);
    stroke-width: 4;
}

.countdown-circle-progress {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease;
}

.countdown-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, var(--white), #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.8;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-card:hover .countdown-circle-progress {
    stroke: var(--primary-color);
}

.countdown-card:hover .countdown-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.crafting-footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.crafting-footer p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin: 0 auto;
}

.heart {
    color: #ff4d4d;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .crafting-footer {
        bottom: 10px;
    }
    
    .crafting-footer p {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
    }
}

/* Company Message Modal Styles */
.company-message-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(99, 102, 241, 0.95);
    color: white;
    border: none;
    padding: 10px 24px 10px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 1);
}

.company-message-btn .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.company-message-btn .btn-text {
    font-weight: 500;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.modal-brand-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.modal-footer-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 6px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal {
    border-radius: 20px;
    padding: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 70vh;
    color: white;
    position: relative;
    opacity: 1;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 0 1px rgba(139, 92, 246, 0.2);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(139, 92, 246, 0.1);
}

.modal::-webkit-scrollbar {
    width: 4px;
}

.modal::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 2px;
}

.modal::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay.active .modal {
    opacity: 1;
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 92, 246, 0.1);
    border: none;
    color: #a78bfa;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: rgba(139, 92, 246, 0.2);
}

.modal-content {
    line-height: 1.6;
}

.modal h2 {
    color: #8b5cf6;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    font-weight: 600;
}

.modal h3 {
    color: #a78bfa;
    font-size: 16px;
    margin: 20px 0 10px;
    opacity: 1;
    font-weight: 600;
}

.modal-section {
    margin: 12px 0;
    padding: 12px 15px;
    background: rgba(19, 19, 19, 0.6);
    border-radius: 10px;
    border-left: 2px solid #8b5cf6;
}

.modal-section p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 1;
    font-weight: 400;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.modal-list li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(19, 19, 19, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #ffffff;
    opacity: 1;
}

.modal-list li:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(5px);
}

.modal-list li::before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    font-size: 18px;
    opacity: 1;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    color: #a78bfa;
    font-style: italic;
    padding: 12px;
    background: rgba(19, 19, 19, 0.6);
    border-radius: 10px;
    font-size: 14px;
    opacity: 1;
}

@media (max-width: 768px) {
    .modal {
        padding: 20px;
        width: 95%;
        max-height: 75vh;
    }
    
    .company-message-btn {
        left: 15px;
        right: auto;
        bottom: 15px;
        padding: 8px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .company-message-btn .btn-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .company-message-btn .btn-text {
        opacity: 0;
        transform: translateX(-100%);
        position: relative;
        pointer-events: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        margin-left: -5px;
    }

    .company-message-btn:hover,
    .company-message-btn:focus {
        width: 200px;
        padding: 8px 20px 8px 8px;
        border-radius: 50px;
        background: rgba(99, 102, 241, 1);
    }

    .company-message-btn:hover .btn-text,
    .company-message-btn:focus .btn-text {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .modal-brand-icon {
        width: 28px;
        height: 28px;
    }

    .modal h2 {
        font-size: 18px;
    }

    .modal h3 {
        font-size: 15px;
    }

    .modal-section {
        padding: 10px 12px;
    }

    .modal-section p,
    .modal-list li {
        font-size: 13px;
    }

    .modal-list li {
        padding: 8px 10px;
    }

    .modal-footer {
        font-size: 13px;
        padding: 10px;
    }

    /* Ensure mobile menu items don't overlap */
    .mobile-social-menu {
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .company-message-btn {
        left: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        padding: 6px;
        gap: 8px;
        box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
    }

    .company-message-btn:hover,
    .company-message-btn:focus {
        width: 180px;
        padding: 6px 16px 6px 6px;
        box-shadow: 0 6px 14px rgba(99, 102, 241, 0.3);
    }

    .company-message-btn .btn-icon {
        width: 28px;
        height: 28px;
    }

    .company-message-btn .btn-text {
        font-size: 14px;
        margin-left: -3px;
    }
}

/* Add keyframes for smooth text appearance */
@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sister Companies Styles - New Design */
.sister-companies {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.sister-company {
    position: relative;
    background: rgba(30, 30, 40, 0.7);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.10), 0 1.5px 8px rgba(0,0,0,0.12);
    padding: 32px 24px 20px 64px;
    min-width: 320px;
    max-width: 340px;
    margin-left: 24px;
    overflow: visible;
    transition: box-shadow 0.3s;
    border-left: 5px solid var(--accent-color);
}

.sister-company:hover {
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.18), 0 2px 12px rgba(0,0,0,0.18);
    background: rgba(40, 30, 60, 0.85);
}

.sister-company .logo-badge {
    position: absolute;
    left: -32px;
    top: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-color) 60%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.18);
    color: #fff;
    font-size: 2rem;
    border: 3px solid #181828;
}

.sister-company h3 {
    color: var(--accent-color);
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.sister-company p {
    color: #fff;
    font-size: 0.98em;
    margin-bottom: 14px;
    opacity: 0.92;
    line-height: 1.5;
    font-weight: 400;
}

.company-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.company-tag {
    background: rgba(139, 92, 246, 0.13);
    color: var(--accent-color);
    border-radius: 12px;
    padding: 3px 14px;
    font-size: 0.75em;
    font-weight: 500;
    border: none;
    letter-spacing: 0.2px;
}

.company-social {
    display: flex;
    gap: 14px;
    margin-top: 0;
}

.company-social .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.09);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    border: none;
}

.company-social .social-icon:hover {
    background: #4267B2; /* Facebook blue */
    color: #fff;
    transform: scale(1.12);
}
.company-social .social-icon[title*='Instagram']:hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}
.company-social .social-icon[title*='Email']:hover {
    background: #ea4335;
    color: #fff;
}

.company-logo-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.4em;
    width: 2.4em;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,92,246,0.18) 60%, rgba(255,255,255,0.10) 100%);
    margin-right: 10px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
    /* Optional: border for extra definition */
    border: 2px solid rgba(139,92,246,0.15);
}
.company-logo {
    height: 1.6em;
    width: 1.6em;
    object-fit: contain;
    border-radius: 50%;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
} 