/* Add @font-face rules at the top to self-host the font */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/inter-v20-latin-900.woff2') format('woff2');
}

:root {
    --color-primary: #FF6B00;
    --color-bg: #111;
    --color-text: #fff;
    --color-text-muted: #a0a0a0;
    --color-card-bg: #fff;
    --color-card-text: #333;
    --color-input-bg: #f7f7f7;
    --color-input-border: #e0e0e0;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--background-image-url);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}
.container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.info-section {
    flex: 1.2;
    text-align: left;
}
.form-section {
    flex: 0.8;
    min-width: 350px;
}
.flash-sale {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1.5rem;
}
h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 1rem;
    line-height: 1.1;
    word-break: break-all;
}
.description {
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}
.contact-info {
    display: flex;
    gap: 1.5rem;
    font-weight: 700;
}
.form-card {
    background-color: var(--color-card-bg);
    color: var(--color-card-text);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: left;
    position: relative;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--color-primary);
    z-index: 2;
}
.form-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0px;
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
    z-index: 1;
    border-top-right-radius: 16px;
}
.form-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 900;
}
.form-card p {
    margin: 0 0 2rem;
    color: #666;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-input-border);
    background-color: var(--color-input-bg);
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}
.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .info-section {
        text-align: center;
    }
    .contact-info {
        justify-content: center;
    }
    h1 { font-size: 3rem; }
}