/* Base Styles */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    /* Color Palette */
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --text-color: #2b2d42;
    --text-light: #8d99ae;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 30px;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    /* Brighter text on hover */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.hero-image dotlottie-player {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    filter: drop-shadow(0 0 1px rgba(67, 97, 238, 0.5)) drop-shadow(0 0 2px rgba(67, 97, 238, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}

.container:hover .section-header h2:after {
    width: 100px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.5s ease-in-out;
}

.service-card:hover .service-icon {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Calculator Section */
.calculator {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calculator h2 {
    margin-bottom: 1rem;
}

.calculator>p {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.calculator-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.popup {
    position: fixed;
    bottom: 30px;
    /* top: 30px; */
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

.popup.show {
    opacity: 1;
}

.popup.hidden {
    display: none;
}

.result {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.result:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
    border-color: rgba(67, 97, 238, 0.2);
}

.result::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.result:hover::before {
    transform: scaleX(1);
}

.result-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
    transform-origin: center;
}

.result:hover .result-amount {
    transform: scale(1.05);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0.05;
    z-index: 0;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    width: 100%;
    padding: 30px 0 60px;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    width: 200%;
    animation: slide 40s linear infinite;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

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

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial {
    flex: 0 0 16.666%;
    padding: 0 15px;
    box-sizing: border-box;
    scroll-snap-align: start;
    position: relative;
    perspective: 1000px;
}

.testimonial-inner {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(67, 97, 238, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial:hover .testimonial-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.testimonial::before {
    content: '"\201C"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.quote {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 400;
}



.author {
    display: flex;
    align-items: center;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.author-info p {
    margin: 3px 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Scroll indicator */
.scroll-indicator {
    display: none;
    text-align: center;
    margin: 20px 0 30px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-indicator i {
    margin-left: 8px;
    animation: bounce 2s infinite;
    color: var(--primary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(3px);
    }
}

/* Decorative element */
.testimonial-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
    z-index: 0;
    bottom: -50px;
    right: -30px;
    opacity: 0.3;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
}

.quote:before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-desc {
    margin: 10px 0 20px;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-desc p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.pricing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.solution-features {
    margin: 0 0 25px;
    flex-grow: 1;
}

.solution-features p {
    margin: 6px 0;
    padding: 5px 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-features p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(67, 97, 238, 0.05);
    transition: width 0.3s ease;
    z-index: -1;
}

.solution-features p:hover {
    transform: translateX(5px);
    background: rgba(194, 201, 235, 0.03);
}

.solution-features p:hover:before {
    width: 3px;
    background: var(--primary-color);
}

.solution-features p:last-child {
    margin-bottom: 0;
}

.solution-features p:active {
    transform: translateX(5px) scale(0.98);
}

.solution-buttons {
    margin-top: auto;
    display: flex;
    gap: 12px;
    padding-top: 10px;
}

.solution-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}


.popular-tag,
.new-tag {
    position: absolute;
    top: 15px;
    right: -28px;
    width: 120px;
    text-align: center;
    color: white;
    padding: 4px 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.popular-tag {
    background: var(--primary-color);
}

.new-tag {
    background: #4CAF50;
    /* Green color for the New tag */
    top: 15px;
    /* Match the popular tag's position */
}

.pricing-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.pricing-header h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center;
}

.pricing-card:hover .pricing-header h3:after {
    width: 70px;
}

.price {
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.price-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    position: relative;
}

.price-amount .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 0.4em;
    margin-left: 2px;
}

.setup {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.75rem 0 0;
    font-style: italic;
    position: relative;
    padding-top: 0.75rem;
}

.setup:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.pricing-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features p {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.pricing-features p i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.contact-details {
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}


.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color);
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f8f9ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f8f9ff;
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: var(--text-light);
}

.faq-item.active .faq-question {
    background-color: #f8f9ff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .legal-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .legal-links span {
        display: none;
        /* Hide the | separators on mobile */
    }
}


.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 70px 0;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.6rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }

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

    /* Testimonials mobile styles */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-track {
        width: 100%;
        overflow-x: auto;
        padding: 10px 20px 40px;
        animation: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        display: flex;
        gap: 20px;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .testimonial {
        flex: 0 0 85%;
        min-width: 85%;
        padding: 0 5px;
    }

    .testimonial-inner {
        padding: 25px;
        height: auto;
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }

    .testimonial:active .testimonial-inner {
        transform: scale(0.98);
    }

    .scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0 0;
    }

    .quote {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .rating {
        margin-bottom: 15px;
    }

    .rating i {
        font-size: 0.95rem;
    }

    .author {
        margin-top: auto;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .testimonial::before {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
}

/* Mobile styles for contact section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }


    .contact-item h4 {
        margin-bottom: 0.2rem;
        font-size: 1rem;
        text-align: left;
    }

    .contact-item p {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .calculator-form {
        padding: 30px 20px;
    }

}

@media (max-width: 768px) {
    .testimonial {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .testimonials-track::before,
    .testimonials-track::after {
        width: 20px;
    }
}