html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Intro Animation for Climber */
@keyframes ropeDrop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-rope-drop {
    animation: ropeDrop 1.5s ease-out forwards;
    animation-delay: 0.5s;
    /* Wait for navbar and hero to load */
    opacity: 0;
    /* Hidden initially before animation starts */
}

/* Hero Video Overlay */
.video-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Contact Form 7 Global Styling */
.sepculant-cf7-wrapper .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

.sepculant-cf7-wrapper input:not([type="submit"]),
.sepculant-cf7-wrapper textarea,
.sepculant-cf7-wrapper select {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 0;
}

.sepculant-cf7-wrapper input:focus,
.sepculant-cf7-wrapper textarea:focus,
.sepculant-cf7-wrapper select:focus {
    outline: none;
    border-color: #ff952e;
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(255, 149, 46, 0.1);
}

.sepculant-cf7-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.sepculant-cf7-wrapper .wpcf7-submit {
    display: block;
    width: 100%;
    background-color: #ff952e;
    color: #fff;
    padding: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #ff952e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sepculant-cf7-wrapper .wpcf7-submit:hover {
    background-color: transparent;
    color: #ff952e;
}

/* Select Styling */
.sepculant-cf7-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff952e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Error/Success Messages */
.sepculant-cf7-wrapper .wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px !important;
    border: 2px solid !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    text-align: center !important;
}

.sepculant-cf7-wrapper .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.025em;
}

/* File Upload Specific Styling */
.sepculant-cf7-wrapper input[type="file"] {
    background-color: #fff;
    border: 2px dashed #e5e5e5;
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    font-size: 12px;
}

.sepculant-cf7-wrapper input[type="file"]:hover {
    border-color: #ff952e;
    background-color: #fff9f2;
}

.sepculant-cf7-wrapper input[type="file"]::file-selector-button {
    background-color: #ff952e;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-right: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sepculant-cf7-wrapper input[type="file"]::file-selector-button:hover {
    background-color: #000;
}