/* Global Styles */
:root {
    --primary-color: #111111;
    --secondary-color: #141414;
    --accent-color: #00e5ff;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --dark-color: #0c0c0c;
    --light-color: #f0f0f0;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(20, 20, 30, 0.6);
    --success-color: #4caf50;
    --error-color: #f44336;
    --border-radius: 8px;
    --transition: all 0.25s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --button-shadow: 0 5px 15px rgba(0, 229, 255, 0.25);
    --glow: 0 0 10px rgba(0, 229, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes smallFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 2px var(--accent-color)); }
    50% { filter: drop-shadow(0 0 8px var(--accent-color)); }
    100% { filter: drop-shadow(0 0 2px var(--accent-color)); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #161629, #0c0c0c);
    opacity: 0.8;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.08), transparent 30%),
                radial-gradient(circle at 70% 60%, rgba(98, 0, 234, 0.08), transparent 40%);
    animation: gradientMove 20s ease infinite;
    z-index: -1;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0, 229, 255, 0.2)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.platform-logo {
    width: 55px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.platform-logo:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.platform-logo:nth-child(2) {
    animation: float 6s ease-in-out 1s infinite;
}

.platform-logo:nth-child(3) {
    animation: float 6s ease-in-out 2s infinite;
}

.platform-logo:nth-child(4) {
    animation: float 6s ease-in-out 1.5s infinite;
}

.platform-logo:nth-child(5) {
    animation: float 6s ease-in-out 0.5s infinite;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
}

.hero-content h1 .highlight {
    position: relative;
    display: inline-block;
    animation: smallFloat 4s ease-in-out infinite;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    display: none;
}

/* Contact form button animation */
button[type="submit"] {
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

button[type="submit"]:hover::before {
    left: 100%;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--button-shadow);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.25);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
}

.btn-primary:hover {
    background-color: #00bbcc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary i {
    margin-left: 10px;
    font-size: 16px;
}

.btn-primary:disabled {
    background-color: #555;
    cursor: not-allowed;
    box-shadow: none;
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: rgba(0, 229, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 229, 255, 0.2);
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 650px;
    line-height: 1.8;
}

/* Header */
header {
    background-color: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 15, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text:hover {
    text-shadow: var(--glow);
    letter-spacing: 2.2px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.platform-logos {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.platform-logo {
    width: 55px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.platform-logo i {
    font-size: 24px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.platform-logo:hover {
    transform: translateY(-8px) scale(1.05);
    background-color: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.2);
}

.platform-logo:hover i {
    color: var(--accent-color);
}

/* About Section */
.about {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.about-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-card:hover::before {
    opacity: 1;
}

.about-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* Services Section */
.services {
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wide-service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.wide-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.wide-service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.wide-service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.website-url {
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-url a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 16px;
    color: var(--text-color);
}

.website-url a:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.website-url a i {
    color: var(--accent-color);
    font-size: 18px;
}

/* Features Section */
.features {
    background-color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact .section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact .section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.contact .highlight {
    color: var(--accent-color);
}

.contact-email {
    text-align: center;
    margin: 0 auto 30px;
    font-size: 1.05em;
    padding: 0;
    display: block;
    max-width: 210px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-email p {
    margin: 0;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.05));
    padding: 8px 15px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    width: auto;
    white-space: nowrap;
}

.contact-email i {
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 1.15em;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
    transition: all 0.3s ease;
}

.contact-email p:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 229, 255, 0.2);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.08));
}

.contact-email a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-email a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

@media (max-width: 768px) {
    .contact-email {
        max-width: 300px;
    }
    
    .contact-email p {
        padding: 15px 20px;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
}

.contact-form form {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.form-name {
    width: 100%;
}

.name-fields {
    display: flex;
    gap: 25px;
}

.name-fields input {
    flex: 1;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
    outline: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group.focused label {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #2ecc71;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 16px;
    padding-right: 45px;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #e74c3c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 16px;
    padding-right: 45px;
}

.form-group:last-of-type {
    margin-bottom: 20px;
}

.recaptcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.h-captcha {
    margin-bottom: 10px;
    transform: scale(1);
    transform-origin: center;
    transition: all 0.3s ease;
}

.h-captcha:hover {
    transform: scale(1.02);
}

@media (max-width: 360px) {
    .h-captcha {
        transform: scale(0.85);
    }
    
    .h-captcha:hover {
        transform: scale(0.87);
    }
}

button[type="submit"] {
    display: inline-block;
    width: auto;
    margin: 10px auto 0;
    padding: 15px 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .name-fields {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    button[type="submit"] {
        width: 100%;
    }
}

/* Message Styles */
.message {
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.message.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.message i {
    margin-right: 10px;
    font-size: 18px;
}

/* Help text styling */
.help-text {
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    padding-left: 2px;
}

.help-text.error {
    color: #e74c3c;
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.help-text.success {
    color: #2ecc71;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-grid,
    .additional-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        border-bottom: 1px solid var(--border-color);
    }
    
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .name-fields {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    /* Empty rule to replace works-grid */
}

/* Form loading animation */
@keyframes spinner {
    to {transform: rotate(360deg);}
}

.fa-spinner {
    animation: spinner 1s linear infinite;
}

/* Success check mark animation */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark-animation {
    display: inline-block;
    animation: checkmark 0.5s ease-in-out forwards;
} 