@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background: linear-gradient(140deg, #2f2e2b 0%, #4b4742 50%, #666055 100%);
    min-height: 100vh;
    color: #f3ecdf;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 2rem 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.company-name {
    max-width: 400px;
    height: auto;
}

.content-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, rgba(251, 217, 93, 0.7), rgba(184, 138, 36, 0.7));
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(251, 217, 93, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 217, 93, 0.2);
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
}

.content-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #8b7b62, #af8a3d, #6f5e47);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.content-container:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(251, 217, 93, 0.8);
}

.intro-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #f1e8d6;
}

.intro-text p {
    margin-bottom: 1rem;
    color: #f1e8d6;
}

.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #efe7d7;
}

.main-content h2 {
    font-size: 1.5rem;
    color: #f3ecdf;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #FBD95D, #B88A24) 1;
    padding-bottom: 0.5rem;
}

.main-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #e0d4bd;
    opacity: 0.95;
}

/* Typewriter effect for intro text */
.intro-text {
    position: relative;
}

.cursor {
    color: #FBD95D;
    animation: blink-caret 1s step-end infinite;
    font-weight: bold;
    display: inline;
}

@keyframes blink-caret {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .content-container {
        margin: 0 1rem 2rem;
        padding: 2rem;
        transform: none;
    }
    
    .content-container:hover {
        transform: translateY(-2px);
    }
    
    
    .main-content h2 {
        font-size: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.contact-btn {
    background: linear-gradient(45deg, #FBD95D, #B88A24);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FBD95D;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn.ready-to-send {
    background: linear-gradient(45deg, #FBD95D, #B88A24);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: pulse 1.5s infinite;
}

.contact-btn.ready-to-send:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    background: linear-gradient(135deg, rgba(251, 217, 93, 0.8), rgba(184, 138, 36, 0.8));
    padding: 2.5rem;
    border-radius: 15px;
    width: 400px;
    max-width: 90vw;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 217, 93, 0.2);
}

.modal-content h3 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #FBD95D;
    border-radius: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input:focus {
    outline: none;
    border-color: #B88A24;
    box-shadow: 0 0 0 3px rgba(251, 217, 93, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #FBD95D, #B88A24);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #B88A24, #FBD95D);
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
