:root {
    --primary: #1e293b;
    --primary-dark: #0f172a;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --text-main: #334155;
    --text-light: #94a3b8;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --success: #22c55e;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.bg-dark-blue {
    background-color: var(--primary-dark);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.accent-text {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.highlight {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Services */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--accent);
    color: var(--white);
}

/* Why Us - Parallax */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--primary);
    /* Image is light grey */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 200px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.step-arrow {
    flex-grow: 1;
    height: auto;
    max-width: 100px;
    margin-top: 25px;
    opacity: 0.5;
    transform: rotate(0deg);
    /* Adjust if needed */
}

/* Order Form */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    width: 35px;
    height: 35px;
    background: #e2e8f0;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.progress-step.active {
    background: var(--accent);
    color: var(--white);
}

.progress-line {
    flex-grow: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 10px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon input {
    padding-left: 45px;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-outline.btn-prev {
    color: var(--text-main);
    border-color: #cbd5e1;
}

.btn-outline.btn-prev:hover {
    background: #e2e8f0;
    color: var(--primary);
}

/* Success Message */
.hidden {
    display: none;
}

.success-content {
    text-align: center;
    padding: 40px 0;
}

.success-content i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

/* Reviews */
.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.review-card {
    display: none;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.stars {
    color: #ebb305;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.slider-controls {
    margin-top: 20px;
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    margin: 0 15px;
    transition: color 0.3s;
}

.slider-controls button:hover {
    color: var(--accent);
}

/* Kontaktai Enhanced */
.text-light {
    color: #94a3b8;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.contacts-info {
    flex: 1;
    min-width: 300px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p {
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Contact Form Container */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--primary);
    margin-bottom: 20px;
}

.full-width {
    width: 100%;
}

/* Map Full */
.map-full iframe {
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.map-full iframe:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #64748b;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #1e293b;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.animate-up {
    opacity: 0;
    animation: slideUp 0.8s forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll Reveal Class (handled by JS) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Calculator Section */
.calculator-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.calc-controls {
    flex: 2;
}

.calc-summary {
    flex: 1;
    position: sticky;
    top: 100px;
}

.calc-block {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.calc-block h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-block h3 i {
    color: var(--accent);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.calc-option input {
    position: absolute;
    opacity: 0;
}

.opt-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: var(--transition);
}

.calc-option input:checked+.opt-content {
    border-color: var(--accent);
    background: #fff7ed;
}

.opt-title {
    font-weight: 600;
    color: var(--primary);
}

.opt-price {
    font-weight: 700;
    color: var(--accent);
}

/* Movers Grid */
.movers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}

.mover-option {
    cursor: pointer;
}

.mover-option input {
    display: none;
}

.mover-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mover-option input:checked+.mover-card {
    border-color: var(--accent);
    background: #fff7ed;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mover-icon {
    position: relative;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.mover-count {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.mover-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--text-light);
}

/* Custom Number Input */
.input-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 200px;
}

.number-input {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    width: 140px;
}

.number-input button {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.number-input button:hover {
    background: #e2e8f0;
}

.number-input input {
    flex: 1;
    border: none;
    text-align: center;
    font-weight: 600;
    width: 50px;
    padding: 0;
    -moz-appearance: textfield;
}

.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input.sm {
    width: 100px;
    height: 32px;
}

.number-input.sm button {
    width: 30px;
    height: 32px;
    font-size: 1rem;
}

.packaging-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.pack-item:last-child {
    border-bottom: none;
}

.pack-info {
    display: flex;
    flex-direction: column;
}

.pack-price {
    font-size: 0.85rem;
    color: var(--text-light);
}

.text-success {
    color: var(--success);
    font-weight: 600;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-weight: 600;
    color: var(--primary);
}

/* Summary Card */
.summary-card {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.summary-card h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.sum-row span:last-child {
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

.sum-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.total-price {
    font-size: 2rem;
    color: var(--accent);
}

.vat-note {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin: 10px 0 20px;
}

.pulse-hover:hover {
    animation: pulse 1s infinite;
}

/* Responsive adjustments for calculator */
@media (max-width: 900px) {
    .calculator-wrapper {
        flex-direction: column;
    }

    .calc-controls {
        width: 100%;
    }

    .calc-summary {
        width: 100%;
        position: static;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
        animation: slideUp 0.3s ease forwards;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        color: var(--primary);
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        display: none;
    }

    .step {
        margin-bottom: 30px;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    /* Contacts Mobile */
    .contacts-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-container {
        width: 100%;
        padding: 25px;
    }
}