/* Font Face Declarations */
@font-face {
    font-family: 'Apercu Pro';
    src: url('ApercuPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Apercu Pro';
    src: url('ApercuPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Apercu Pro';
    src: url('ApercuPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Apercu Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #EFF7FE;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 60px 80px;
    max-width: 900px;
    width: 95%;
    text-align: center;
    position: relative;
}

/* Header/Logo */
.header {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-image {
    max-height: 30px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 500;
    color: #495057;
}

/* Main Content */
.main-content {
    margin-bottom: 40px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 8px;
}

/* Plugs Container */
.plugs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 30px;
    position: relative;
}

.plug {
    display: flex;
    align-items: center;
    position: relative;
}

/* Left Blue Plug (Male) */
.left-plug {
    flex-direction: row;
    animation: float-left 4s ease-in-out infinite;
}

.left-plug .plug-body {
    width: 70px;
    height: 50px;
    background: linear-gradient(135deg, #1e7ce8, #0066cc);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(30, 124, 232, 0.3);
    animation: breathe 3s ease-in-out infinite;
}

.left-plug .prong {
    width: 6px;
    height: 18px;
    background: linear-gradient(180deg, #f0f0f0, #d0d0d0);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.left-plug .prong-2 {
    height: 22px;
}

/* Blue Cable */
.blue-cable {
    width: 80px;
    height: 10px;
    background: linear-gradient(180deg, #4da3ff, #1e7ce8);
    border-radius: 5px;
    position: relative;
    margin-left: -5px;
    animation: cable-wave 2.5s ease-in-out infinite;
}

.blue-cable::before {
    content: '';
    position: absolute;
    right: -15px;
    top: -2px;
    width: 20px;
    height: 14px;
    background: linear-gradient(135deg, #4da3ff, #1e7ce8);
    border-radius: 3px;
    transform: rotate(-15deg);
}

.blue-cable::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 2px;
    width: 15px;
    height: 6px;
    background: linear-gradient(180deg, #80c1ff, #4da3ff);
    border-radius: 2px;
}

/* Right Green Plug (Female) */
.right-plug {
    flex-direction: row-reverse;
    animation: float-right 4s ease-in-out infinite;
}

.right-plug .plug-body {
    width: 70px;
    height: 50px;
    background: linear-gradient(135deg, #008F8C, #006D6A);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(0, 143, 140, 0.3);
    animation: breathe 3s ease-in-out infinite 1.5s;
}

.right-plug .socket-hole {
    width: 6px;
    height: 18px;
    background: linear-gradient(180deg, #ffffff, #f0f0f0);
    border-radius: 1px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.right-plug .socket-2 {
    height: 22px;
}

/* Green Cable */
.green-cable {
    width: 120px;
    height: 10px;
    background: linear-gradient(180deg, #33B5B2, #008F8C);
    border-radius: 5px;
    position: relative;
    margin-right: -5px;
    animation: cable-wave 2.5s ease-in-out infinite 0.5s;
}

.green-cable::before {
    content: '';
    position: absolute;
    left: -15px;
    top: -2px;
    width: 20px;
    height: 14px;
    background: linear-gradient(135deg, #33B5B2, #008F8C);
    border-radius: 3px;
    transform: rotate(15deg);
}

.green-cable::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 2px;
    width: 15px;
    height: 6px;
    background: linear-gradient(180deg, #66D4D1, #33B5B2);
    border-radius: 2px;
}

/* Disconnection Gap with animated connection point */
.gap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 1px;
    background: transparent;
}

/* Add animated sparks/electricity at the connection point */
.gap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffeb3b, #ffc107);
    border-radius: 50%;
    opacity: 0.8;
    animation: electric-spark 1.5s ease-in-out infinite;
}

.gap::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.4), transparent);
    border-radius: 50%;
    animation: electric-glow 2s ease-in-out infinite;
}

/* Add animated floating elements for visual effect */
.plugs-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30%;
    width: 8px;
    height: 8px;
    background: #80c1ff;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-blue 3s ease-in-out infinite;
}

.plugs-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 25%;
    width: 6px;
    height: 6px;
    background: #008F8C;
    border-radius: 50%;
    opacity: 0.7;
    animation: float-green 2.5s ease-in-out infinite reverse;
}

/* Add more animated elements to show work in progress */
.main-content::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 15%;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.5;
    animation: sparkle 2s ease-in-out infinite;
}

.main-content::after {
    content: '';
    position: absolute;
    top: 35%;
    right: 20%;
    width: 5px;
    height: 5px;
    background: #ff6b6b;
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 1.8s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes float-blue {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-8px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float-green {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(6px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    25% {
        transform: scale(1.3);
        opacity: 0.8;
    }
    75% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes electric-spark {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.6;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes electric-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }
}

@keyframes float-left {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@keyframes float-right {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@keyframes cable-wave {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.1);
    }
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 14px;
    color: #6c757d;
    margin-right: 8px;
}

.contact-details {
    font-size: 14px;
    color: #495057;
}

.phone-link {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: #e9ecef;
        color: #495057;
        transform: translateY(-2px);
    }

    /* WhatsApp Chat Button */
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transition: all 0.3s ease;
        z-index: 1000;
        animation: whatsapp-pulse 2s ease-in-out infinite;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        color: white;
    }

    @keyframes whatsapp-pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
        margin: 20px;
        width: 92%;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .plugs-container {
        gap: 20px;
    }
    
    .left-plug .plug-body,
    .right-plug .plug-body {
        width: 60px;
        height: 40px;
    }
    
    .blue-cable {
        width: 60px;
        height: 8px;
    }
    
    .green-cable {
        width: 90px;
        height: 8px;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }
    
    .plugs-container {
        gap: 15px;
    }
    
    .left-plug .plug-body,
    .right-plug .plug-body {
        width: 50px;
        height: 35px;
    }
    
    .blue-cable {
        width: 45px;
        height: 6px;
    }
    
    .green-cable {
        width: 70px;
        height: 6px;
    }
} 