:root {
    --primary-color: #0f172a;
    /* Slate 900 - Deep Blue/Black */
    --secondary-color: #1e293b;
    /* Slate 800 */
    --accent-color: #f59e0b;
    /* Amber 500 - Electric Orange/Yellow */
    --accent-hover: #d97706;
    /* Amber 600 */
    --text-dark: #1f2937;
    /* Gray 800 */
    --text-light: #f3f4f6;
    /* Gray 100 */
    --text-muted: #6b7280;
    /* Gray 500 */
    --bg-light: #ffffff;
    --bg-off-white: #f8fafc;
    /* Slate 50 */
    --border-color: #e2e8f0;
    /* Slate 200 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-btn {
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('../bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    /* Slate 300 */
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges i {
    color: var(--accent-color);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-card.highlight {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
}

.service-card.highlight h3 {
    color: var(--text-light);
}

.service-card.highlight p {
    color: #cbd5e1;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.why-us-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.why-us-content>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefits-list h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('../bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.process .section-header h2 {
    color: var(--text-light);
}

.process .section-header p {
    color: #cbd5e1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.step p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    position: relative;
    top: -10px;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-off-white);
    overflow: hidden;
    /* Prevent horizontal scrollbar on page */
}

/* Remove grid layout */
.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Mask edges for smooth fade effect */
    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);
}

.testimonials-track {
    display: flex;
    gap: 0;
    /* Gap is handled by group padding */
    width: max-content;
    /* Start at -50% and move to 0 for Left -> Right motion */
    animation: scroll-right 60s linear infinite;
    /* Hardware acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Fallback/Vendor prefixes for better compatibility */
@-webkit-keyframes scroll-right {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.testimonials-group {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    /* Creates gap between groups */
    /* Ensure the group has no shrinking issues */
    flex-shrink: 0;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    /* Ensure cards have fixed width in flex container */
    flex: 0 0 350px;
    max-width: 350px;
}

.testimonial-card .stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.info-item a,
.info-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.info-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn.telegram {
    background-color: #0088cc;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Footer */
.footer {
    background-color: #020617;
    /* Even darker than primary */
    color: #94a3b8;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-footer i,
.logo-footer span {
    color: var(--accent-color);
}

.footer-brand p {
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .why-us-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image,
    .why-us-image {
        order: -1;
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta .phone-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem;
        text-align: center;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Calculator Section */
.calculator-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.calculator-tabs {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--accent-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.services-list {
    display: none;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.services-list.active {
    display: block;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    transition: background-color 0.2s;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background-color: var(--bg-off-white);
}

.service-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.service-info .price {
    font-weight: 700;
    color: var(--accent-color);
}

.service-info .unit {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.25rem;
    font-weight: 600;
}

/* Calculator Summary */
.calculator-summary {
    background-color: var(--bg-off-white);
    padding: 2rem;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.calculator-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.summary-item span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.summary-item .item-total {
    font-weight: 600;
    color: var(--primary-color);
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

#modal-summary {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--bg-off-white);
    border-radius: var(--radius);
    max-height: 200px;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-summary {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .service-controls {
        justify-content: center;
    }
}

/* Hero Background Override */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('../bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    display: none;
}

/* --- New Calculator Form Styles (from val.html) --- */
.val-container {
    max-width: 550px;
    width: 100%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.val-container:hover {
    transform: translateY(-5px);
}

.val-header {
    background: linear-gradient(135deg, #141A2B 0%, #1e293b 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.val-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #F59E0B;
}

.val-header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    color: white;
}

.val-header p {
    opacity: 0.9;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.val-steps-container {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px 0;
    position: relative;
}

.val-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.val-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.val-step.active .val-step-circle {
    background-color: #F59E0B;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.val-step.completed .val-step-circle {
    background-color: #141A2B;
    color: white;
}

.val-step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

.val-step.active .val-step-label,
.val-step.completed .val-step-label {
    color: #141A2B;
}

.val-steps-line {
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 3px;
    background-color: #e2e8f0;
    z-index: 1;
}

.val-steps-progress {
    height: 100%;
    background-color: #F59E0B;
    width: 0%;
    transition: width 0.5s ease;
}

.val-form-container {
    padding: 30px;
}

.val-form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.val-form-step.active {
    display: block;
}

.val-form-group {
    margin-bottom: 25px;
}

.val-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #141A2B;
    font-size: 0.95rem;
}

.val-form-group input,
.val-form-group select,
.val-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.val-form-group input:focus,
.val-form-group select:focus,
.val-form-group textarea:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    background-color: white;
}

.hours-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.hours-display {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #141A2B;
    background-color: #fef3c7;
    padding: 12px;
    border-radius: 10px;
    border: 2px dashed #F59E0B;
}

.hours-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
}

.hours-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F59E0B;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
    transition: all 0.2s ease;
}

.hours-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
}

.hours-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #64748b;
}

.val-price-calculator {
    background-color: #fef3c7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #F59E0B;
    animation: fadeIn 0.6s ease-out;
}

.val-price-calculator h3 {
    margin-bottom: 10px;
    color: #141A2B;
    font-size: 1.1rem;
}

.val-price-breakdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.val-price-total {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #fbbf24;
    font-weight: 700;
    font-size: 1.2rem;
    color: #141A2B;
}

.val-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.val-btn {
    padding: 14px 28px;
    background-color: #e2e8f0;
    color: #141A2B;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.val-btn:hover {
    background-color: #cbd5e1;
    transform: translateY(-2px);
}

.val-btn-primary {
    background: linear-gradient(to right, #141A2B, #1e293b);
    color: white;
}

.val-btn-primary:hover {
    background: linear-gradient(to right, #F59E0B, #f59e0bd9);
    box-shadow: 0 7px 15px rgba(245, 158, 11, 0.3);
}

.val-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.val-btn:disabled:hover {
    background-color: #e2e8f0;
}

.electrician-icons {
    display: flex;
    justify-content: space-around;
    margin: 20px 0 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.electrician-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.electrician-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.electrician-icon:nth-child(3) {
    animation-delay: 1s;
}

.electrician-icon:nth-child(4) {
    animation-delay: 1.5s;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 2px solid #F59E0B;
    font-size: 1.8rem;
    color: #141A2B;
}

.icon-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #141A2B;
    text-align: center;
}

.footer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.success-message {
    text-align: center;
    padding: 20px;
    display: none;
}

.success-message i {
    font-size: 4rem;
    color: #F59E0B;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (max-width: 600px) {
    .val-container {
        max-width: 100%;
    }

    .val-header,
    .val-form-container {
        padding: 20px;
    }

    .val-header h1 {
        font-size: 1.5rem;
    }

    .val-steps-container {
        padding: 20px 15px 0;
    }

    .val-step-circle {
        width: 40px;
        height: 40px;
    }

    .val-steps-line {
        top: 40px;
        left: 60px;
        right: 60px;
    }

    .val-form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .val-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Added Icons Styling */
.nav-links a i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Override for the calculator button to ensure icon is visible on the button background */
.nav-links .btn i {
    color: inherit;
    margin-right: 0.5rem;
}

.section-header h2 i {
    color: var(--accent-color);
    margin-right: 12px;
}

.why-us-content h2 i,
.contact-info h2 i {
    color: var(--accent-color);
    margin-right: 12px;
}