:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8941F;
    --secondary-color: #F8F6F0;
    --accent-color: #FFD700;
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --background: #FEFEFE;
    --background-alt: #F9F7F4;
    --border-color: #E5E5E5;
    --shadow-light: rgba(212, 175, 55, 0.1);
    --shadow-medium: rgba(212, 175, 55, 0.2);
    --shadow-strong: rgba(212, 175, 55, 0.3);
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-secondary: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 100%);
    --gradient-red: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    --success-green: #28a745; /* New green color for checkmarks */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* =================================
   Styles for Landing Page (index-2.html)
   ================================= */

.hero-landing {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-landing .hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-landing .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-landing .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2;
}

.hero-landing .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.landing-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.landing-form input[type="email"] {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    width: 300px;
    transition: all 0.3s ease;
}

.landing-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.landing-form input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.landing-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.landing-contact a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.landing-contact a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}