/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #6a11cb;
    border: 2px solid #6a11cb;
}

.btn-secondary:hover {
    background: #6a11cb;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #6a11cb;
    border: 2px solid #6a11cb;
}

.btn-outline:hover {
    background: #6a11cb;
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.logo img {
    max-height: 45px;
    width: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    background: white;
}

.logo span,
.brand-text span {
    color: #6a11cb;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    background: white;
    padding: 4px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6a11cb;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #6a11cb;
    bottom: -5px;
    left: 0;
}

.example-link {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.example-link:hover {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: #f9f9f9;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #6a11cb;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonials-carousel {
    max-width: 560px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.testimonials-carousel .testimonial-card {
    margin: 0 auto;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #6a11cb;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.testimonial-dot:hover {
    background: rgba(106, 17, 203, 0.3);
}

.testimonial-dot.active {
    background: #6a11cb;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    flex: 1;
    min-width: 300px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #777;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: #6a11cb;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #6a11cb;
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bbb;
}

.contact-info i {
    margin-right: 10px;
    color: #6a11cb;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 150px 0 60px;
    background: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.price-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 10px 15px;
    margin: 20px auto 0;
    display: inline-block;
    color: #856404;
    text-align: center;
}

.price-note i {
    margin-right: 8px;
}

.guarantee-banner {
    margin: 20px auto;
    text-align: center;
    max-width: 700px;
}

.guarantee-banner p {
    color: #28a745;
    font-weight: 500;
}

/* Services Page */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    border: 2px solid #6a11cb;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #6a11cb;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-features {
    padding: 30px;
}

.service-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.service-features ul li i {
    color: #6a11cb;
    margin-right: 10px;
    margin-top: 5px;
}

.service-actions {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #f9f9f9;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.addon-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-icon {
    font-size: 40px;
    color: #6a11cb;
    margin-bottom: 20px;
}

.addon-card h3 {
    margin-bottom: 15px;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a11cb;
    margin-top: 15px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #eee;
    z-index: 1;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid white;
}

/* Contact Page */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a11cb;
}

.contact-info-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 3px;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 15px;
    max-height: 200px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.map-placeholder {
    height: 300px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.map-content {
    text-align: center;
    color: #333;
    z-index: 2;
    position: relative;
}

.map-content i {
    font-size: 60px;
    color: #6a11cb;
    margin-bottom: 20px;
}

.map-content h3 {
    margin-bottom: 10px;
}

.map-content a {
    color: #6a11cb;
    font-weight: 600;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    display: none;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
}

.modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-footer {
    padding: 20px 30px;
    text-align: right;
    border-top: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .service-card.featured {
        transform: none;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .service-actions {
        flex-direction: column;
    }

    .service-actions .btn {
        width: 100%;
    }
}

/* ----- Sticky quote bar ----- */
.sticky-quote-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-quote-bar.visible {
    transform: translateY(0);
}

.sticky-quote-bar p {
    margin: 0;
    font-weight: 500;
}

.sticky-quote-bar .btn {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.sticky-quote-bar .btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.sticky-quote-bar .btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.sticky-bar-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.sticky-bar-close:hover {
    color: #fff;
}

/* ----- Back to top ----- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.5);
}

/* ----- Payment note (contact) ----- */
.payment-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(106, 17, 203, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

.payment-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.payment-note i {
    margin-right: 8px;
    color: #6a11cb;
}

/* ----- Map embed ----- */
.map-section-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.map-embed-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
}

.map-embed {
    display: block;
    width: 100%;
    height: 300px;
}

.map-link-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.map-link-text a {
    color: #6a11cb;
    font-weight: 600;
}

/* ----- Scroll progress bar ----- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ----- WhatsApp floating button ----- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ----- Service timeline badge ----- */
.service-timeline {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
}

.service-header .service-timeline {
    font-size: 0.85rem;
}

/* ----- Guarantee ----- */
.guarantee-banner {
    text-align: center;
    padding: 20px;
    background: rgba(106, 17, 203, 0.08);
    border-radius: 10px;
    margin: 30px 0 0;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

.guarantee-banner p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

.guarantee-banner i {
    color: #6a11cb;
    margin-right: 8px;
}

/* ----- Which package? helper ----- */
.package-helper {
    padding: 80px 0;
    background: #f9f9f9;
}

.package-helper .section-title {
    margin-bottom: 1rem;
}

.package-helper-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.package-helper-inner {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.package-helper-inner h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.package-helper-options {
    margin-bottom: 1.5rem;
}

.package-helper-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 500;
}

.package-helper-options input {
    width: 18px;
    height: 18px;
    accent-color: #6a11cb;
}

.package-helper-result {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f0f4ff;
    border-radius: 8px;
    border-left: 4px solid #6a11cb;
    display: none;
}

.package-helper-result.visible {
    display: block;
}

.package-helper-result .package-helper-answer {
    margin-bottom: 1rem;
}

.package-helper-result .btn {
    margin-top: 0.5rem;
}

/* ----- Cost estimator ----- */
.cost-estimator {
    padding: 80px 0;
    background: #f9f9f9;
}

.cost-estimator-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cost-estimator-inner {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.cost-estimator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.estimator-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.estimator-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.estimator-package-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.estimator-package-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 8px;
    border: 2px solid #eee;
    transition: border-color 0.2s, background 0.2s;
}

.estimator-package-option:hover {
    border-color: #ccc;
}

.estimator-package-option input {
    width: 18px;
    height: 18px;
    accent-color: #6a11cb;
}

.estimator-package-option input:checked+span {
    color: #6a11cb;
}

.estimator-package-option:has(input:checked) {
    border-color: #6a11cb;
    background: rgba(106, 17, 203, 0.06);
}

.estimator-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.estimator-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6a11cb;
}

.estimator-checkbox.estimator-content {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.estimator-checkbox.estimator-content input[type="number"] {
    width: 70px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.estimator-pages-label {
    font-size: 0.9rem;
    color: #666;
}

.cost-estimator-result {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08) 0%, rgba(37, 117, 252, 0.08) 100%);
    border-radius: 10px;
    border: 2px solid rgba(106, 17, 203, 0.2);
    text-align: center;
}

.estimator-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1rem;
}

.estimator-total-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.estimator-total-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #6a11cb;
}

.estimator-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.cost-estimator-result .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .cost-estimator-inner {
        grid-template-columns: 1fr;
    }
}

/* ----- How we build ----- */
.how-we-build {
    padding: 80px 0;
    background: #fff;
}

.how-we-build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 2.5rem;
}

.how-we-build-item {
    text-align: center;
    padding: 24px 16px;
}

.how-we-build-item i {
    font-size: 2.5rem;
    color: #6a11cb;
    margin-bottom: 16px;
}

.how-we-build-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.how-we-build-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ----- Trusted by ----- */
.trusted-by {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.trusted-by-label {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.trusted-by-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trusted-by-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.trusted-by-item i {
    font-size: 2rem;
    color: #6a11cb;
}

/* ----- We built this (portfolio) ----- */
.we-built-this {
    padding: 80px 0;
    background: #fff;
}

.we-built-this-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.portfolio-card {
    display: block;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.portfolio-card:hover {
    border-color: #6a11cb;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(106, 17, 203, 0.12);
}

.portfolio-card-inner {
    padding: 1.5rem;
}

.portfolio-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6a11cb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.portfolio-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.portfolio-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.portfolio-link {
    font-weight: 600;
    color: #6a11cb;
    font-size: 0.95rem;
}

.portfolio-link i {
    margin-left: 6px;
    font-size: 0.85rem;
}

.portfolio-card-cta {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08) 0%, rgba(37, 117, 252, 0.08) 100%);
    border: 2px dashed #6a11cb;
}

.portfolio-card-cta .portfolio-link {
    color: #6a11cb;
}

/* ----- Tips page ----- */
.tips-content {
    padding: 60px 0 80px;
    background: #fff;
}

.tips-list {
    max-width: 720px;
    margin: 0 auto;
}

.tip-article {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.tip-article:last-of-type {
    border-bottom: none;
}

.tip-article h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.tip-article h2 i {
    margin-right: 10px;
    color: #6a11cb;
}

.tip-article p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tip-article ul {
    margin: 1rem 0 1rem 1.25rem;
}

.tip-article ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.tips-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.tips-cta p {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ----- Glossary page ----- */
.glossary-content {
    padding: 60px 0 80px;
    background: #fff;
}

.glossary-list {
    max-width: 720px;
    margin: 0 auto;
}

.glossary-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.glossary-item:last-of-type {
    border-bottom: none;
}

.glossary-item h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.glossary-item h2 i {
    margin-right: 10px;
    color: #6a11cb;
}

.glossary-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.glossary-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.glossary-cta p {
    margin: 0;
    color: #666;
}

.glossary-cta a {
    color: #6a11cb;
    font-weight: 600;
}

/* ----- Scroll-in animation ----- */
.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Dark mode toggle (footer) ----- */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.dark-mode-toggle label {
    cursor: pointer;
    font-size: 0.9rem;
    color: #bbb;
    user-select: none;
}

.dark-mode-toggle input {
    width: 44px;
    height: 24px;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.dark-mode-toggle input:checked {
    background: #6a11cb;
}

.dark-mode-toggle input::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.dark-mode-toggle input:checked::after {
    transform: translateX(20px);
}

/* ----- Dark mode ----- */
html.dark-mode {
    color-scheme: dark;
}

html.dark-mode body {
    background: #1a1a1a;
    color: #e0e0e0;
}

html.dark-mode .section-title,
html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4 {
    color: #f0f0f0;
}

html.dark-mode .navbar {
    background: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

html.dark-mode .nav-links a {
    color: #ccc;
}

html.dark-mode .nav-links a:hover,
html.dark-mode .nav-links a.active {
    color: #a78bfa;
}

html.dark-mode .logo span {
    color: #a78bfa;
}

html.dark-mode .hero {
    background: #222;
}

html.dark-mode .hero p {
    color: #b0b0b0;
}

html.dark-mode .hero h1 span {
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.dark-mode .features {
    background: #1a1a1a;
}

html.dark-mode .feature-card {
    background: #252525;
}

html.dark-mode .feature-card h3,
html.dark-mode .feature-card p {
    color: #e0e0e0;
}

html.dark-mode .testimonials {
    background: #222;
}

html.dark-mode .testimonial-card {
    background: #252525;
}

html.dark-mode .testimonial-content p,
html.dark-mode .testimonial-author p {
    color: #b0b0b0;
}

html.dark-mode .page-header {
    background: #222;
}

html.dark-mode .page-header p {
    color: #b0b0b0;
}

html.dark-mode .services {
    background: #1a1a1a;
}

html.dark-mode .service-card {
    background: #252525;
}

html.dark-mode .service-features {
    color: #e0e0e0;
}

html.dark-mode .additional-services {
    background: #222;
}

html.dark-mode .addon-card {
    background: #252525;
}

html.dark-mode .addon-card h3,
html.dark-mode .addon-card p {
    color: #e0e0e0;
}

html.dark-mode .addon-price {
    color: #a78bfa;
}

html.dark-mode .process {
    background: #1a1a1a;
}

html.dark-mode .process-steps::before {
    background: #333;
}

html.dark-mode .step h3,
html.dark-mode .step p {
    color: #e0e0e0;
}

html.dark-mode .contact {
    background: #1a1a1a;
}

html.dark-mode .contact-form-container h2,
html.dark-mode .contact-info-container h2 {
    color: #f0f0f0;
}

html.dark-mode .form-group label {
    color: #b0b0b0;
}

html.dark-mode .form-group input,
html.dark-mode .form-group select,
html.dark-mode .form-group textarea {
    background: #252525;
    border-color: #444;
    color: #e0e0e0;
}

html.dark-mode .contact-item h3 {
    color: #f0f0f0;
}

html.dark-mode .contact-item p {
    color: #b0b0b0;
}

html.dark-mode .faq-question {
    background: #252525;
    color: #e0e0e0;
}

html.dark-mode .faq-item {
    border-color: #333;
}

html.dark-mode .faq-answer p {
    color: #b0b0b0;
}

html.dark-mode .package-helper {
    background: #222;
}

html.dark-mode .package-helper-subtitle {
    color: #b0b0b0;
}

html.dark-mode .package-helper-inner {
    background: #252525;
}

html.dark-mode .package-helper-inner h3 {
    color: #f0f0f0;
}

html.dark-mode .package-helper-result {
    background: rgba(106, 17, 203, 0.15);
    border-left-color: #a78bfa;
}

html.dark-mode .how-we-build {
    background: #1a1a1a;
}

html.dark-mode .how-we-build-item p {
    color: #b0b0b0;
}

html.dark-mode .how-we-build-item h3 {
    color: #f0f0f0;
}

html.dark-mode .guarantee-banner {
    background: rgba(106, 17, 203, 0.15);
    border-color: rgba(106, 17, 203, 0.3);
}

html.dark-mode .guarantee-banner p {
    color: #e0e0e0;
}

html.dark-mode .trusted-by {
    background: #1a1a1a;
    border-bottom-color: #333;
}

html.dark-mode .trusted-by-label {
    color: #b0b0b0;
}

html.dark-mode .trusted-by-item {
    color: #b0b0b0;
}

html.dark-mode .trusted-by-item i {
    color: #a78bfa;
}

html.dark-mode .we-built-this {
    background: #1a1a1a;
}

html.dark-mode .we-built-this-subtitle {
    color: #b0b0b0;
}

html.dark-mode .portfolio-card {
    background: #252525;
}

html.dark-mode .portfolio-card:hover {
    border-color: #a78bfa;
}

html.dark-mode .portfolio-card h3 {
    color: #f0f0f0;
}

html.dark-mode .portfolio-card p {
    color: #b0b0b0;
}

html.dark-mode .portfolio-link {
    color: #a78bfa;
}

html.dark-mode .portfolio-card-cta {
    background: rgba(106, 17, 203, 0.12);
    border-color: #a78bfa;
}

html.dark-mode .tips-content {
    background: #1a1a1a;
}

html.dark-mode .tip-article {
    border-bottom-color: #333;
}

html.dark-mode .tip-article h2 {
    color: #f0f0f0;
}

html.dark-mode .tip-article h2 i {
    color: #a78bfa;
}

html.dark-mode .tip-article p,
html.dark-mode .tip-article ul li {
    color: #b0b0b0;
}

html.dark-mode .tips-cta {
    border-top-color: #333;
}

html.dark-mode .tips-cta p {
    color: #e0e0e0;
}

html.dark-mode .glossary-content {
    background: #1a1a1a;
}

html.dark-mode .glossary-item {
    border-bottom-color: #333;
}

html.dark-mode .glossary-item h2 {
    color: #f0f0f0;
}

html.dark-mode .glossary-item h2 i {
    color: #a78bfa;
}

html.dark-mode .glossary-item p {
    color: #b0b0b0;
}

html.dark-mode .glossary-cta {
    border-top-color: #333;
}

html.dark-mode .glossary-cta p {
    color: #b0b0b0;
}

html.dark-mode .glossary-cta a {
    color: #a78bfa;
}

html.dark-mode .footer {
    background: #111;
}

html.dark-mode .footer-col h3,
html.dark-mode .footer-col h4 {
    color: #f0f0f0;
}

html.dark-mode .footer-col p,
html.dark-mode .footer-col ul li a,
html.dark-mode .contact-info li {
    color: #aaa;
}

html.dark-mode .footer-bottom {
    color: #888;
    border-top-color: rgba(255, 255, 255, 0.08);
}

html.dark-mode .map-section {
    background: #222;
}

html.dark-mode .map-placeholder {
    background: #333;
}

html.dark-mode .map-content {
    color: #e0e0e0;
}

html.dark-mode .hamburger span {
    background: #e0e0e0;
}

html.dark-mode .cost-estimator {
    background: #222;
}

html.dark-mode .cost-estimator-subtitle {
    color: #b0b0b0;
}

html.dark-mode .cost-estimator-inner {
    background: #252525;
}

html.dark-mode .estimator-label {
    color: #f0f0f0;
}

html.dark-mode .estimator-package-option {
    border-color: #444;
}

html.dark-mode .estimator-package-option:hover {
    border-color: #555;
}

html.dark-mode .estimator-package-option:has(input:checked) {
    border-color: #a78bfa;
    background: rgba(106, 17, 203, 0.15);
}

html.dark-mode .estimator-package-option input:checked+span {
    color: #a78bfa;
}

html.dark-mode .estimator-checkbox {
    color: #e0e0e0;
}

html.dark-mode .estimator-checkbox.estimator-content input[type="number"] {
    background: #333;
    border-color: #444;
    color: #e0e0e0;
}

html.dark-mode .estimator-pages-label {
    color: #b0b0b0;
}

html.dark-mode .cost-estimator-result {
    background: rgba(106, 17, 203, 0.15);
    border-color: rgba(167, 139, 250, 0.3);
}

html.dark-mode .estimator-total-label {
    color: #b0b0b0;
}

html.dark-mode .estimator-total-amount {
    color: #a78bfa;
}

html.dark-mode .estimator-note {
    color: #b0b0b0;
}

html.dark-mode .testimonial-dot {
    border-color: #a78bfa;
}

html.dark-mode .testimonial-dot.active {
    background: #a78bfa;
}

html.dark-mode .payment-note {
    background: rgba(106, 17, 203, 0.15);
    border-color: rgba(167, 139, 250, 0.3);
}

html.dark-mode .payment-note p {
    color: #e0e0e0;
}

html.dark-mode .payment-note i {
    color: #a78bfa;
}

html.dark-mode .map-section-note {
    color: #b0b0b0;
}

html.dark-mode .map-link-text a {
    color: #a78bfa;
}

html.dark-mode .price-note {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
    color: #e0c040;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1500;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ensure font awesome icons work properly in the float */
.whatsapp-float i {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}