:root {
    --bg: #050505;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #ff1e2f;
    --accent-glow: rgba(255, 30, 47, 0.4);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-tap-highlight-color: transparent;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    pointer-events: none;
    z-index: 10;
    filter: contrast(120%) brightness(120%);
}

.glow-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.sphere-1 {
    width: min(600px, 100vw);
    height: min(600px, 100vw);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite alternate;
}

.sphere-2 {
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: radial-gradient(circle, rgba(60, 60, 255, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

.hero-visual {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: url('assets/hero-shape.png') no-repeat center center;
    background-size: contain;
    opacity: 0.15;
    filter: blur(2px);
    z-index: -1;
    pointer-events: none;
    animation: slow-rotate 60s linear infinite;
}

@keyframes slow-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, 60px) scale(1.1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 3rem);
    max-width: 1200px;
    z-index: 100;
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    background: rgba(5, 5, 5, 0.75);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container > a:first-child {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Open state for hamburger */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

.nav-cta {
    background: var(--text);
    color: var(--bg);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 30, 47, 0.3);
}

/* Layout */
.landing-page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem; /* Account for navbar */
    margin-bottom: 6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { width: 100%; height: 100%; opacity: 0.6; }
    100% { width: 300%; height: 300%; opacity: 0; }
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    text-wrap: balance;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: var(--text);
    color: var(--bg);
}

.btn.primary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 30, 47, 0.4);
}

.btn.secondary {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Trusted Partners */
.trusted-partners {
    width: 100%;
    max-width: 1000px;
    margin: -2rem auto 8rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    padding: 2rem 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    text-align: center;
}

.partners-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partners-container {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: default;
    white-space: nowrap;
    margin-right: 4rem;
}

.partner-logo:hover {
    opacity: 1;
    color: white;
    transform: scale(1.05);
}

/* Services & Bento Grid */
.services {
    width: 100%;
    margin-bottom: 8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255, 30, 47, 0.08) 0%, var(--card-bg) 100%);
    border-color: rgba(255, 30, 47, 0.2);
}

.bento-item.featured:hover {
    border-color: rgba(255, 30, 47, 0.4);
    box-shadow: 0 10px 40px rgba(255, 30, 47, 0.15);
}

.bento-item.wide {
    grid-column: span 3;
    padding: 3rem 2.5rem;
}

.bento-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.bento-item.featured .bento-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 500;
}

.service-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

.bento-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    margin-bottom: 8rem;
}

.testimonial-marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 0 4rem;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 380px;
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 2rem;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    opacity: 0.2;
}

.testimonial-card:nth-child(even) {
    margin-top: 40px;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 30, 47, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: -1rem;
    left: 1rem;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact {
    width: 100%;
    margin-bottom: 8rem;
    display: flex;
    justify-content: center;
}

.contact-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    max-width: 700px;
    width: 100%;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    padding: 0.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: focus-within 0.3s ease, border-color 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 30, 47, 0.1);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    width: 100%;
}

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

.notify-form button {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: scale(1.05);
    background: var(--accent);
    color: white;
}

.notify-form button:active {
    transform: scale(0.98);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    border-color: var(--accent);
    background: rgba(255, 30, 47, 0.05);
    transform: translateY(-2px);
}

.social-links a:active {
    transform: scale(0.96);
    background: rgba(255, 30, 47, 0.1);
}

.social-links svg {
    stroke: var(--accent);
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--card-border);
    border-radius: 50%;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Premium Responsive Overhaul */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline-block;
        margin-top: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        gap: 3rem;
        opacity: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 600;
        color: var(--text-muted);
    }
    
    .nav-links a.nav-cta {
        font-size: 1.25rem;
        padding: 1rem 2.5rem;
        color: var(--bg);
        background: var(--text);
        border-radius: 100px;
        margin-top: 1rem;
    }
    
    .landing-page {
        padding-top: 0;
    }

    .hero {
        min-height: 100vh;
        margin-bottom: 4rem;
        padding-top: 5rem;
    }

    .trusted-partners {
        border-radius: 32px;
        padding: 2rem 1.5rem;
        margin: -2rem auto 4rem;
    }

    .testimonial-marquee {
        padding-top: 2rem;
    }

    .testimonial-card {
        width: 320px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.featured, .bento-item.wide {
        grid-column: span 1;
        grid-row: auto;
    }

    .metrics {
        flex-direction: column;
        gap: 3rem;
    }

    .notify-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .notify-form input {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        padding: 1rem 1.5rem;
        border-radius: 100px;
        margin-bottom: 0.5rem;
    }

    .notify-form button {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 2rem);
        top: 1rem;
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        height: 36px;
    }

    .landing-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        margin-bottom: 1.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .bento-item {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .bento-item.wide {
        padding: 2rem 1.5rem;
    }
}

/* Full Contact Form (contact.html) */
.full-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 30, 47, 0.1);
}

.submit-btn {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 30, 47, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}