/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.3);
    --accent: #06d6a0;
    --accent-dark: #05b888;
    --dark: #0a0a1a;
    --dark-2: #12122a;
    --dark-3: #1a1a3e;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --bg: #0a0a1a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.bg-glow::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 26, 0.95);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* ===== HERO ===== */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--card-border);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(6, 214, 160, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 214, 160, 0.4);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
}

.stat:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.service-card:nth-child(2) .service-icon {
    background: rgba(6, 214, 160, 0.1);
    border-color: rgba(6, 214, 160, 0.15);
}

.service-card:nth-child(3) .service-icon {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.15);
}

.service-card:nth-child(4) .service-icon {
    background: rgba(244, 114, 182, 0.1);
    border-color: rgba(244, 114, 182, 0.15);
}

.service-card:nth-child(5) .service-icon {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.15);
}

.service-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== PORTFOLIO ===== */
.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.portfolio-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.portfolio-content {
    padding: 48px;
}

.portfolio-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.portfolio-content h3 {
    font-size: 2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.portfolio-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.portfolio-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.portfolio-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.portfolio-feature strong {
    display: block;
    color: white;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.portfolio-feature p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tech span {
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

/* Mockup */
.portfolio-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: rgba(99, 102, 241, 0.03);
    border-left: 1px solid var(--card-border);
}

.mockup {
    width: 100%;
    max-width: 320px;
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--card-border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mockup-body {
    padding: 20px 18px;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat {
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}

.mockup-stat.green {
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.15);
}

.mockup-stat.blue {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.mockup-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.mockup-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.mockup-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.mockup-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    animation: growBar 1s ease-out both;
}

.mockup-bar:nth-child(1) { animation-delay: 0.1s; }
.mockup-bar:nth-child(2) { animation-delay: 0.2s; }
.mockup-bar:nth-child(3) { animation-delay: 0.3s; }
.mockup-bar:nth-child(4) { animation-delay: 0.4s; }
.mockup-bar:nth-child(5) { animation-delay: 0.5s; }
.mockup-bar:nth-child(6) { animation-delay: 0.6s; }
.mockup-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes growBar {
    from { height: 0; }
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-content {
        padding: 32px 24px;
    }

    .portfolio-features {
        grid-template-columns: 1fr;
    }

    .portfolio-visual {
        border-left: none;
        border-top: 1px solid var(--card-border);
        padding: 32px 24px;
    }
}

/* ===== QUIZ ===== */
.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--dark-2);
    border: 1px solid var(--card-border);
    padding: 48px 44px;
    border-radius: 20px;
    box-shadow: var(--shadow), var(--shadow-glow);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 10%;
    box-shadow: 0 0 12px var(--primary-glow);
}

.progress-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.question {
    display: none;
}

.question.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.question h3 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 28px;
    font-weight: 600;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.option:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.06);
    color: white;
}

.option input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

/* ===== RESULTS ===== */
.results-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--dark-2);
    border: 1px solid var(--card-border);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow), var(--shadow-glow);
    text-align: center;
}

.results-container h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 32px;
    font-weight: 700;
}

.results-score {
    margin-bottom: 24px;
}

.score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3), 0 0 100px rgba(6, 214, 160, 0.1);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.score-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.score-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
}

.results-level {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.results-text {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.results-recommendations {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 28px;
    border-radius: 14px;
    margin-bottom: 32px;
}

.results-recommendations h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.results-recommendations ul {
    padding-left: 20px;
    color: var(--text-muted);
}

.results-recommendations li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.results-cta {
    border-top: 1px solid var(--card-border);
    padding-top: 32px;
}

.results-cta h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
}

.results-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.results-cta .btn {
    margin: 0 8px 8px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--dark-2);
    border: 1px solid var(--card-border);
    padding: 36px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: white;
    transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 16px;
}

.contact-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 14px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--card-border);
    text-align: center;
    padding: 28px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .quiz-container,
    .results-container {
        padding: 28px 20px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 28px 20px;
    }
}
