:root {
    --primary-color: #D2691E; /* Orange from logo */
    --secondary-color: #5A5A5A; /* Dark grey from logo */
    --accent-color: #3498db; /* Light blue for interactive elements */
    --light-grey: #f8f9fa;
    --dark-grey: #343a40;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    padding-top: 0;
}

/* Header Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.btn-cta {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    /*! background: linear-gradient(135deg, var(--light-grey) 0%, #e3f2fd 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transform: none !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.1" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    /*transform: translateY(-10px);*/
    transform: none !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-card {
    background: var(--secondary-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    transform: translateY(20px);
}

.about-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.feature-card.active {
    background: var(--accent-color);
    color: white;
}

.feature-card.active .feature-number {
    color: white;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    background: var(--light-grey);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stars {
    font-size: 1.2rem;
}

.client-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.client-info strong {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
}

.client-info small {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark-grey) !important;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

/* Badge Styles */
.badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}


/* Additional styles for pricing, contact, and guides pages */

/* Pricing Card Styles */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.price .period {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

.pricing-description {
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    padding: 8px 0;
    text-align: left;
}

.pricing-footer {
    margin-top: 2rem;
}

/* Process Step Styles */
.process-step {
    position: relative;
    padding: 20px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin-top: 20px;
}

/* Document Item Styles */
.document-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--light-grey);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form Styles */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-details h6 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--secondary-color);
    opacity: 0.8;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Guide Card Styles */
.guide-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.1);
}

.guide-content {
    padding: 30px;
}

.guide-category {
    margin-bottom: 15px;
}

.guide-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.guide-card p {
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* Resource Card Styles */
.resource-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.resource-icon {
    margin-bottom: 20px;
}

.resource-card h5 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Comparison Card Styles */
.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-card.traditional {
    border-left: 5px solid #dc3545;
}

.comparison-card.mylegal {
    border-left: 5px solid #28a745;
}

.comparison-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.comparison-card ul li {
    padding: 8px 0;
    font-size: 1rem;
}

/* Newsletter Form Styles */
.newsletter-form .input-group {
    max-width: 400px;
    margin-left: auto;
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 20px;
}

.newsletter-form .btn {
    padding: 12px 25px;
    font-weight: 600;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }

    .featured-badge {
        font-size: 0.8rem;
        padding: 3px 30px;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .guide-meta {
        flex-direction: column;
        gap: 5px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
    }

    .newsletter-form .input-group {
        margin-left: 0;
    }
}
.hero-section2 {
    background: linear-gradient(135deg, var(--light-grey) 0%, #e3f2fd 100%);
}
.hero-section2 {
    background: linear-gradient(135deg, var(--light-grey) 0%, #e3f2fd 100%);
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(218, 109, 53) !important;
}