* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #1a5f5f;
    --primary-gold: #D4AF37;
    --dark-teal: #0d3d3d;
    --light-gold: #F4D03F;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --text-light: #e0e0e0;
    --text-gray: #999999;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at center top, rgba(13, 61, 61, 0.4) 0%, rgba(0, 0, 0, 0.8) 40%, #000000 100%),
                linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    background-attachment: fixed;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

.particle:nth-child(1) {
    left: 10%;
    animation: randomFloat1 15s infinite ease-in-out;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation: randomFloat2 18s infinite ease-in-out;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 40%;
    animation: randomFloat3 16s infinite ease-in-out;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    left: 55%;
    animation: randomFloat4 20s infinite ease-in-out;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 70%;
    animation: randomFloat5 14s infinite ease-in-out;
    animation-delay: 0.5s;
}

.particle:nth-child(6) {
    left: 15%;
    animation: randomFloat6 17s infinite ease-in-out;
    animation-delay: 2.5s;
}

.particle:nth-child(7) {
    left: 35%;
    animation: randomFloat7 19s infinite ease-in-out;
    animation-delay: 1.5s;
}

.particle:nth-child(8) {
    left: 60%;
    animation: randomFloat8 13s infinite ease-in-out;
    animation-delay: 4s;
}

.particle:nth-child(9) {
    left: 80%;
    animation: randomFloat9 21s infinite ease-in-out;
    animation-delay: 0.8s;
}

.particle:nth-child(10) {
    left: 90%;
    animation: randomFloat10 16s infinite ease-in-out;
    animation-delay: 3.5s;
}

/* Random movement animations for particles */
@keyframes randomFloat1 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    25% {
        transform: translateY(70vh) translateX(50px) scale(0.8) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(40vh) translateX(-30px) scale(1) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(10vh) translateX(40px) scale(0.9) rotate(270deg);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) translateX(20px) scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes randomFloat2 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    30% {
        transform: translateY(60vh) translateX(-60px) scale(0.9) rotate(-90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(30vh) translateX(70px) scale(1.1) rotate(-180deg);
        opacity: 0.7;
    }
    70% {
        transform: translateY(5vh) translateX(-40px) scale(0.8) rotate(-270deg);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-15vh) translateX(-20px) scale(0) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes randomFloat3 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.4;
    }
    35% {
        transform: translateY(65vh) translateX(80px) scale(1) rotate(120deg);
        opacity: 0.6;
    }
    55% {
        transform: translateY(35vh) translateX(-50px) scale(0.9) rotate(240deg);
        opacity: 0.7;
    }
    80% {
        transform: translateY(8vh) translateX(60px) scale(0.8) rotate(360deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-12vh) translateX(30px) scale(0) rotate(480deg);
        opacity: 0;
    }
}

@keyframes randomFloat4 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.4;
    }
    28% {
        transform: translateY(75vh) translateX(-70px) scale(0.85) rotate(-120deg);
        opacity: 0.6;
    }
    48% {
        transform: translateY(45vh) translateX(90px) scale(1.05) rotate(-240deg);
        opacity: 0.7;
    }
    68% {
        transform: translateY(15vh) translateX(-55px) scale(0.95) rotate(-360deg);
        opacity: 0.5;
    }
    88% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-8vh) translateX(-35px) scale(0) rotate(-480deg);
        opacity: 0;
    }
}

@keyframes randomFloat5 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.4;
    }
    22% {
        transform: translateY(68vh) translateX(45px) scale(0.9) rotate(150deg);
        opacity: 0.6;
    }
    45% {
        transform: translateY(38vh) translateX(-65px) scale(1.1) rotate(300deg);
        opacity: 0.7;
    }
    65% {
        transform: translateY(12vh) translateX(55px) scale(0.85) rotate(450deg);
        opacity: 0.5;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-18vh) translateX(25px) scale(0) rotate(600deg);
        opacity: 0;
    }
}

@keyframes randomFloat6 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    11% {
        opacity: 0.4;
    }
    27% {
        transform: translateY(72vh) translateX(-55px) scale(0.95) rotate(-150deg);
        opacity: 0.6;
    }
    47% {
        transform: translateY(42vh) translateX(75px) scale(1) rotate(-300deg);
        opacity: 0.7;
    }
    67% {
        transform: translateY(14vh) translateX(-45px) scale(0.9) rotate(-450deg);
        opacity: 0.5;
    }
    87% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-14vh) translateX(-25px) scale(0) rotate(-600deg);
        opacity: 0;
    }
}

@keyframes randomFloat7 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    9% {
        opacity: 0.4;
    }
    26% {
        transform: translateY(69vh) translateX(65px) scale(0.88) rotate(200deg);
        opacity: 0.6;
    }
    46% {
        transform: translateY(39vh) translateX(-80px) scale(1.08) rotate(400deg);
        opacity: 0.7;
    }
    66% {
        transform: translateY(11vh) translateX(50px) scale(0.92) rotate(600deg);
        opacity: 0.5;
    }
    86% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-16vh) translateX(40px) scale(0) rotate(800deg);
        opacity: 0;
    }
}

@keyframes randomFloat8 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    13% {
        opacity: 0.4;
    }
    29% {
        transform: translateY(71vh) translateX(-85px) scale(0.93) rotate(-200deg);
        opacity: 0.6;
    }
    49% {
        transform: translateY(41vh) translateX(95px) scale(1.12) rotate(-400deg);
        opacity: 0.7;
    }
    69% {
        transform: translateY(13vh) translateX(-60px) scale(0.87) rotate(-600deg);
        opacity: 0.5;
    }
    89% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-11vh) translateX(-45px) scale(0) rotate(-800deg);
        opacity: 0;
    }
}

@keyframes randomFloat9 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    14% {
        opacity: 0.4;
    }
    31% {
        transform: translateY(73vh) translateX(70px) scale(0.91) rotate(250deg);
        opacity: 0.6;
    }
    51% {
        transform: translateY(43vh) translateX(-75px) scale(1.06) rotate(500deg);
        opacity: 0.7;
    }
    71% {
        transform: translateY(15vh) translateX(65px) scale(0.89) rotate(750deg);
        opacity: 0.5;
    }
    91% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-9vh) translateX(35px) scale(0) rotate(1000deg);
        opacity: 0;
    }
}

@keyframes randomFloat10 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    24% {
        transform: translateY(70vh) translateX(-60px) scale(0.94) rotate(-250deg);
        opacity: 0.6;
    }
    44% {
        transform: translateY(40vh) translateX(85px) scale(1.09) rotate(-500deg);
        opacity: 0.7;
    }
    64% {
        transform: translateY(12vh) translateX(-50px) scale(0.86) rotate(-750deg);
        opacity: 0.5;
    }
    84% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-13vh) translateX(-30px) scale(0) rotate(-1000deg);
        opacity: 0;
    }
}

/* Lightning Spark Styles */
.lightning-spark {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
    opacity: 0;
    box-shadow: 0 0 10px var(--primary-gold), 0 0 20px var(--primary-gold);
}

.lightning-spark:nth-child(11) {
    left: 20%;
    top: 15%;
    animation: lightningStrike1 3s infinite;
    animation-delay: 0s;
}

.lightning-spark:nth-child(12) {
    left: 45%;
    top: 25%;
    animation: lightningStrike2 4s infinite;
    animation-delay: 1.5s;
}

.lightning-spark:nth-child(13) {
    left: 70%;
    top: 10%;
    animation: lightningStrike3 3.5s infinite;
    animation-delay: 0.8s;
}

.lightning-spark:nth-child(14) {
    left: 30%;
    top: 35%;
    animation: lightningStrike4 4.5s infinite;
    animation-delay: 2.2s;
}

.lightning-spark:nth-child(15) {
    left: 85%;
    top: 20%;
    animation: lightningStrike5 3.8s infinite;
    animation-delay: 1s;
}

@keyframes lightningStrike1 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(0);
    }
    1% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
    2% {
        opacity: 0.8;
        transform: translateY(10px) scaleY(1.2);
    }
    3% {
        opacity: 0;
        transform: translateY(20px) scaleY(0);
    }
    98% {
        opacity: 0;
    }
}

@keyframes lightningStrike2 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(0) rotate(15deg);
    }
    1% {
        opacity: 1;
        transform: translateY(0) scaleY(1) rotate(15deg);
    }
    2% {
        opacity: 0.9;
        transform: translateY(15px) scaleY(1.3) rotate(15deg);
    }
    3% {
        opacity: 0;
        transform: translateY(30px) scaleY(0) rotate(15deg);
    }
    98% {
        opacity: 0;
    }
}

@keyframes lightningStrike3 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(0) rotate(-10deg);
    }
    1% {
        opacity: 1;
        transform: translateY(0) scaleY(1) rotate(-10deg);
    }
    2% {
        opacity: 0.85;
        transform: translateY(12px) scaleY(1.15) rotate(-10deg);
    }
    3% {
        opacity: 0;
        transform: translateY(25px) scaleY(0) rotate(-10deg);
    }
    98% {
        opacity: 0;
    }
}

@keyframes lightningStrike4 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(0) rotate(20deg);
    }
    1% {
        opacity: 1;
        transform: translateY(0) scaleY(1) rotate(20deg);
    }
    2% {
        opacity: 0.9;
        transform: translateY(18px) scaleY(1.4) rotate(20deg);
    }
    3% {
        opacity: 0;
        transform: translateY(35px) scaleY(0) rotate(20deg);
    }
    98% {
        opacity: 0;
    }
}

@keyframes lightningStrike5 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(0) rotate(-15deg);
    }
    1% {
        opacity: 1;
        transform: translateY(0) scaleY(1) rotate(-15deg);
    }
    2% {
        opacity: 0.8;
        transform: translateY(14px) scaleY(1.25) rotate(-15deg);
    }
    3% {
        opacity: 0;
        transform: translateY(28px) scaleY(0) rotate(-15deg);
    }
    98% {
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
    position: relative;
    padding: 50px;
    background: radial-gradient(ellipse at center, rgba(226, 253, 253, 0.142) 0%, rgba(0, 0, 0, 0.17) 50%, transparent 90%);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(255, 248, 225, 0.5)) drop-shadow(0 0 60px rgba(26, 95, 95, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-image {
    max-width: 300px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(251, 248, 238, 0.5)) drop-shadow(0 0 60px rgba(26, 95, 95, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(249, 244, 227, 0.8)) drop-shadow(0 0 100px rgba(26, 95, 95, 0.5));
    }
}

.lightning-overlay {
    position: absolute;
    top: 0;
    left: 40;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightning-bolt {
    width: 80%;
    height: 80%;
    max-width: 200px;
    max-height: 200px;
    animation: lightningFlash 2s ease-in-out infinite;
}

@keyframes lightningFlash {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.content {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-tsrn {
    color: var(--primary-teal);
    text-shadow: 0 0 20px rgba(26, 95, 95, 0.5);
    animation: textPulse 3s ease-in-out infinite;
}

.title-power {
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    animation: textPulse 3s ease-in-out infinite 0.5s;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.subtitle-wrapper {
    margin-bottom: 30px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto;
    animation: dividerGlow 2s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.coming-soon-badge {
    display: inline-block;
    position: relative;
    padding: 12px 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-text {
    position: relative;
    z-index: 2;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-gold);
    opacity: 0.3;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(26, 95, 95, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: featureFadeIn 1s ease-out both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(3) {
    animation-delay: 1s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(26, 95, 95, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 0.6s;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.contact-section {
    width: 100%;
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(26, 95, 95, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.8);
}

.form-input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--bg-black);
    padding: 0 8px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    opacity: 1;
    transform: translateY(0);
}

.submit-btn {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-teal), var(--primary-teal));
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    display: block;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(26, 95, 95, 0.3);
    border: 1px solid var(--primary-teal);
    color: var(--primary-gold);
}

.form-message.error {
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid #8b0000;
    color: #ff6b6b;
}

.footer {
    margin-top: 60px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes featureFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
        gap: 10px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
        flex-direction: column;
    }
    
    .logo-image {
        max-width: 200px;
    }
    
    .description {
        font-size: 1rem;
    }
}

