:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 100%);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.navbar {
    padding: 20px 0;
    background-color: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--dark) !important;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-primary);
    color: var(--white) !important;
    letter-spacing: 0;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand .logo-eureka {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
}

.navbar-brand .logo-cinematics {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 12px;
    color: var(--primary);
    text-transform: uppercase;
    margin-left: 2px;
}

.navbar-brand .logo-slogan {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: lowercase;
    margin-top: 4px;
    font-family: 'Dancing Script', cursive;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: var(--transition);
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    background-color: var(--dark);
    padding: 20px;
    margin-top: 15px;
}

.contact-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.contact-card {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
}

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

.contact-header h1 {
    font-family: var(--font-secondary);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.form-label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 0;
    transition: var(--transition);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control option {
    background-color: var(--dark-light);
    color: var(--white);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: none;
}

.contact-info-card {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 20px;
}

.info-content h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.15);
    border: 1px solid #198754;
    color: #4ade80;
    padding: 20px;
    margin-bottom: 30px;
    display: none;
}

.alert-success.show {
    display: block;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 16px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:disabled {
    background-color: var(--gray);
    border-color: var(--gray);
    cursor: not-allowed;
}

.footer {
    background-color: transparent;
    color: var(--white);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .contact-card {
        padding: 40px 30px;
    }
    
    .contact-info-card {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .navbar-brand .logo-eureka {
        font-size: 22px;
        letter-spacing: 5px;
    }
    
    .navbar-brand .logo-cinematics {
        font-size: 9px;
        letter-spacing: 8px;
    }
}
