/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    overflow-x: hidden;
}

.app {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 4px;
    animation: float 6s ease-in-out infinite;
}

/* Shape variations */
.shape-1 {
    width: 20px;
    height: 20px;
    background: #FF1493;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 30px;
    height: 8px;
    background: #FFD700;
    top: 20%;
    right: 20%;
    animation-delay: 1s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 15px;
    height: 15px;
    background: #40E0D0;
    top: 30%;
    left: 80%;
    animation-delay: 2s;
    border-radius: 50%;
}

.shape-4 {
    width: 25px;
    height: 8px;
    background: #00D4AA;
    top: 15%;
    left: 60%;
    animation-delay: 0.5s;
    transform: rotate(-30deg);
}

.shape-5 {
    width: 12px;
    height: 12px;
    background: #FF6347;
    top: 40%;
    left: 10%;
    animation-delay: 3s;
    border-radius: 50%;
}

.shape-6 {
    width: 35px;
    height: 10px;
    background: #FF1493;
    top: 50%;
    right: 15%;
    animation-delay: 1.5s;
    transform: rotate(60deg);
}

.shape-7 {
    width: 18px;
    height: 18px;
    background: #FFD700;
    top: 60%;
    left: 25%;
    animation-delay: 2.5s;
    transform: rotate(45deg);
}

.shape-8 {
    width: 22px;
    height: 6px;
    background: #40E0D0;
    top: 70%;
    right: 30%;
    animation-delay: 0.8s;
}

.shape-9 {
    width: 16px;
    height: 16px;
    background: #00D4AA;
    top: 80%;
    left: 70%;
    animation-delay: 3.5s;
    border-radius: 50%;
}

.shape-10 {
    width: 28px;
    height: 8px;
    background: #FF6347;
    top: 25%;
    left: 40%;
    animation-delay: 1.2s;
    transform: rotate(-45deg);
}

.shape-11 {
    width: 14px;
    height: 14px;
    background: #FF1493;
    top: 85%;
    right: 10%;
    animation-delay: 2.8s;
    border-radius: 50%;
}

.shape-12 {
    width: 32px;
    height: 10px;
    background: #FFD700;
    top: 35%;
    right: 40%;
    animation-delay: 0.3s;
    transform: rotate(30deg);
}

.shape-13 {
    width: 20px;
    height: 20px;
    background: #40E0D0;
    top: 45%;
    left: 5%;
    animation-delay: 4s;
    transform: rotate(45deg);
}

.shape-14 {
    width: 26px;
    height: 8px;
    background: #00D4AA;
    top: 55%;
    left: 85%;
    animation-delay: 1.8s;
    transform: rotate(-60deg);
}

.shape-15 {
    width: 12px;
    height: 12px;
    background: #FF6347;
    top: 65%;
    right: 50%;
    animation-delay: 3.2s;
    border-radius: 50%;
}

.shape-16 {
    width: 24px;
    height: 6px;
    background: #FF1493;
    top: 75%;
    left: 50%;
    animation-delay: 0.7s;
}

.shape-17 {
    width: 18px;
    height: 18px;
    background: #FFD700;
    top: 5%;
    right: 5%;
    animation-delay: 2.3s;
    transform: rotate(45deg);
}

.shape-18 {
    width: 30px;
    height: 8px;
    background: #40E0D0;
    top: 90%;
    left: 30%;
    animation-delay: 1.6s;
    transform: rotate(15deg);
}

.shape-19 {
    width: 16px;
    height: 16px;
    background: #00D4AA;
    top: 12%;
    left: 35%;
    animation-delay: 3.8s;
    border-radius: 50%;
}

.shape-20 {
    width: 22px;
    height: 8px;
    background: #FF6347;
    top: 95%;
    right: 25%;
    animation-delay: 0.9s;
    transform: rotate(-15deg);
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: right;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00D4AA;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.content-container {
    text-align: center;
    max-width: 800px;
}

.main-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: #2D2D2D;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-info {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.contact-label {
    font-weight: 600;
    color: #2D2D2D;
    font-size: 1.1rem;
}

.contact-value {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

.cta-button {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #00D4AA;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification.show {
    display: flex;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-label {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .shape {
        display: none;
    }
    
    .main-title {
        margin-bottom: 1.5rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
}

