/* Base Styles */

:root {
    --primary-color: #2E86AB;
    --secondary-color: #F18F01;
    --accent-color: #C73E1D;
    --light-color: #F5F5F5;
    --dark-color: #333333;
    --gray-color: #777777;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
    --black: #000000;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}


/* Buttons */

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #1e6a8c;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.cta-button.secondary {
    background-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: #d97e01;
}

.cta-button.small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.cta-button.full-width {
    display: block;
    width: 100%;
}


/* Header */

header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}


/* Hero Sections */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1522199710521-72d69614c702'") no-repeat center center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease;
}

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/logo.jpg") no-repeat center center / cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}


/* Sections */

section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.light-bg {
    background-color: var(--light-color);
}


/* Feature Cards */

.features {
    padding: 60px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}


/* Testimonials */

.testimonials {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-info {
    font-weight: 600;
}

.client-name {
    color: var(--primary-color);
}

.client-location {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-left: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-controls button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: #1e6a8c;
}


/* CTA Section */

.cta-section {
    text-align: center;
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* Footer */

footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
}


/* About Page */

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.values-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.service-areas {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.area-card:hover img {
    transform: scale(1.1);
}

.area-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    margin-bottom: 0;
}


/* Services Page */

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-card p {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card ul {
    margin-bottom: 20px;
}

.service-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-card ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.pricing-card ul {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.quote-calculator {
    background-color: var(--light-color);
    padding: 80px 0;
}

#quoteForm {
    max-width: 600px;
    margin: 0 auto 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.quote-result {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.estimated-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}


/* Booking Page */

.booking-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.booking-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.booking-steps li {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.booking-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}


/* Form Styles */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: inherit;
    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(46, 134, 171, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: underline;
}


/* Contact Page */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-container {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
}

.contact-info-card {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.banking-details {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.banking-details ul li {
    margin-bottom: 10px;
}

.map-container {
    margin-top: 80px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}


/* Team Page */

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.position {
    color: var(--gray-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.bio {
    margin-bottom: 20px;
}

.member-contact {
    display: flex;
    gap: 15px;
}

.member-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.member-contact a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.team-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.team-cta h2 {
    color: var(--white);
}


/* WhatsApp Float */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--box-shadow);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}


/* Chatbot */

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.chatbot-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin-bottom: 0;
    color: var(--white);
}

.close-chatbot {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.chatbot-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.chatbot-message {
    margin-bottom: 15px;
}

.chatbot-message p {
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 18px;
    display: inline-block;
    max-width: 80%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--light-gray);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    outline: none;
}

.send-query {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 10px;
    cursor: pointer;
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--box-shadow);
    z-index: 999;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    background-color: #1e6a8c;
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Styles */

@media (max-width: 992px) {
    .about-content,
    .contact-container,
    .booking-form-container {
        grid-template-columns: 1fr;
    }
    .booking-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: var(--transition);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .features .container,
    .services-grid,
    .pricing-grid,
    .values-grid,
    .areas-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p,
    .page-hero p {
        font-size: 1rem;
    }
    section {
        padding: 60px 0;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .social-links {
        margin-top: 15px;
    }
    .chatbot-container {
        width: 90%;
        right: 5%;
    }
    .chatbot-toggle {
        right: 20px;
        bottom: 100px;
    }
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
    }
}


/* Thank You Page Styles */

.thank-you-hero {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 100px 0 80px;
    margin-top: 80px;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    animation: bounceIn 0.8s ease;
}

.thank-you-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.thank-you-hero .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.thank-you-hero p {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
}

.thank-you-actions .cta-button i {
    margin-right: 8px;
}

.whatsapp-reminder {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 1s ease 0.8s;
    animation-fill-mode: both;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.whatsapp-button i {
    margin-right: 8px;
}

.next-steps {
    padding: 80px 0;
    background-color: var(--light-color);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card p {
    margin-bottom: 20px;
}

.step-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.step-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.step-link:hover i {
    transform: translateX(5px);
}


/* Animations */

@keyframes bounceIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}


/* Responsive Styles */

@media (max-width: 768px) {
    .thank-you-hero {
        padding: 80px 0 60px;
    }
    .thank-you-hero h1 {
        font-size: 2.5rem;
    }
    .thank-you-actions {
        flex-direction: column;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .thank-you-hero {
        padding: 60px 0 40px;
    }
    .thank-you-hero h1 {
        font-size: 2rem;
    }
    .checkmark-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}