* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Background Image Handling */
body {
    background: url('home.jpeg') no-repeat center center fixed;
    background-size: cover;
}

/* Dark Overlay for readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Adjust opacity to show more/less poster */
    z-index: 1;
}

.landing-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Logo Styling */
.main-logo {
    max-width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0px 0px 10px rgba(255, 215, 0, 0.3));
}

/* Typography */
.main-heading {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to bottom, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

/* Buttons */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
}

.btn {
    text-decoration: none;
    padding: 18px 35px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.wa-icon {
    width: 20px;
    margin-right: 10px;
    filter: invert(1);
}

/* --- ANIMATIONS --- */

/* Pulse Animation for CTA */
@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 153, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

.btn:active {
    transform: scale(0.95);
}

/* Responsive Scaling */
@media (max-width: 600px) {
    .main-heading { font-size: 2rem; }
    .sub-heading { font-size: 1.1rem; }
    .main-logo { max-width: 220px; }
}

.trust-footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #aaa;
}