/* ========================================
   MODERN HOMEPAGE STYLES
   Blue + Orange Color Scheme
   ======================================== */

:root {
    /* Primary Colors */
    --primary-blue: #1E40AF;
    --primary-blue-dark: #1E3A8A;
    --primary-blue-light: #3B82F6;
    --primary-orange: #e22200;
    --primary-orange-dark: #c01d00;
    --primary-orange-light: #ff4a00;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Spacing */
    --section-padding: 30px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ========================================
   STATIC HERO SECTION
   ======================================== */
body{
    background-color: white;
}

.hero-section-static {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section-static::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section-static::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hero Text Content - Left Side */
.hero-text-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-title-static {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: left;
}

.text-orange {
    color: var(--primary-orange);
    display: block;
}

.hero-subtitle-main {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    font-weight: 400;
    text-align: left;
}

/* Quick Start Form - Right Side */
.hero-quick-start {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 2;
}

.quick-start-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quick-start-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.quick-start-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.form-step .form-select {
    flex: 1;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.form-step .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
    outline: none;
}

.btn-start-business {
    background: var(--primary-orange);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition-base);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    width: 100%;
    margin-top: 12px;
}

.btn-start-business:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

/* Form Card Container - Centered */
.hero-section-static .row.justify-content-center {
    position: relative;
    z-index: 2;
}

.features-bar {
    background: var(--primary-blue);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.features-bar .row {
    margin: 0 -10px;
}

.features-bar .row > [class*='col-'] {
    padding: 0 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    padding: var(--section-padding);
    background: white;
}

.trust-badge-logo {
    max-width: 200px;
    width: 20vw;
    height: auto;
}

.trust-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.trust-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.about-section{
    padding: 62px;

}

.packages-section,
.blog-section {
    padding: var(--section-padding);
    
}

.section-title {
    color: orange;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
}

.text-primary {
    color: var(--primary-blue) !important;
}

/* ========================================
   ABOUT CARDS
   ======================================== */

.about-section .row {
    margin: 0 -10px;
}

.about-section .row > [class*='col-'] {
    padding: 0 10px;
    margin-bottom: 20px;
}

.about-card {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
    height: 100%;
}

.about-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
    transform: translateY(-4px);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-card-icon i {
    font-size: 32px;
    color: var(--white);
}

.about-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.about-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   TRANSPARENT COSTS SECTION
   ======================================== */

.transparent-costs-section {
    min-height: 100vh;
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.transparent-costs-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.transparent-costs-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.transparent-costs-section .container {
    position: relative;
    z-index: 2;
}

/* Tab Navigation */
.cost-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cost-tab {
    padding: 16px 32px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cost-tab i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cost-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
}

.cost-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.cost-tab.active i {
    transform: scale(1.2);
}

/* Tab Content */
.cost-tab-content {
    display: none;
    animation: fadeInLeft 0.5s ease-out;
}

.cost-tab-content.active {
    display: block;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cost-content-header h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.cost-tagline {
    font-size: 18px;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Feature List */
.cost-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-features-list li {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
}

.cost-features-list li:nth-child(1) { animation-delay: 0.1s; }
.cost-features-list li:nth-child(2) { animation-delay: 0.2s; }
.cost-features-list li:nth-child(3) { animation-delay: 0.3s; }
.cost-features-list li:nth-child(4) { animation-delay: 0.4s; }
.cost-features-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cost-features-list li:hover {
    border-color: var(--primary-blue);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cost-features-list li:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* CTA Buttons in Tab Content */
.cost-tab-content .btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cost-tab-content .btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

.cost-tab-content .btn i {
    transition: transform 0.3s ease;
}

.cost-tab-content .btn:hover i {
    transform: translateX(5px);
}

/* Visual Container */
.cost-visual-container {
    position: relative;
    height: 500px;
}

.cost-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.cost-visual.active {
    display: flex;
    animation: fadeInRight 0.5s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Icon */
.animated-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.icon-star {
    background: linear-gradient(135deg, #e22200, #c01d00);
    box-shadow: 0 20px 60px rgba(226, 34, 0, 0.4);
}

.icon-crown {
    background: linear-gradient(135deg, #e22200, #c01d00);
    box-shadow: 0 20px 60px rgba(226, 34, 0, 0.4);
}

.icon-gem {
    background: linear-gradient(135deg, #e22200, #c01d00);
    box-shadow: 0 20px 60px rgba(226, 34, 0, 0.4);
}

.animated-icon i {
    font-size: 80px;
    color: var(--white);
    animation: rotate 4s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animated Circles */
.animated-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    opacity: 0.3;
}

.circle-1 {
    width: 250px;
    height: 250px;
    animation: ripple 3s ease-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    animation: ripple 3s ease-out 1s infinite;
}

.circle-3 {
    width: 350px;
    height: 350px;
    animation: ripple 3s ease-out 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.visual-text {
    margin-top: 40px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visual-text h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.visual-text p {
    font-size: 16px;
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 991px) {
    .transparent-costs-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .cost-content-header h3 {
        font-size: 32px;
    }
    
    .cost-visual-container {
        height: 400px;
        margin-top: 40px;
    }
    
    .animated-icon {
        width: 150px;
        height: 150px;
    }
    
    .animated-icon i {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .cost-tab {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cost-content-header h3 {
        font-size: 28px;
    }
    
    .cost-tagline {
        font-size: 16px;
    }
    
    .cost-features-list li {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .cost-visual-container {
        height: 350px;
    }
    
    .animated-icon {
        width: 120px;
        height: 120px;
    }
    
    .animated-icon i {
        font-size: 50px;
    }
    
    .visual-text h4 {
        font-size: 22px;
    }
    
    .visual-text p {
        font-size: 14px;
    }
}

/* ========================================
   PACKAGE CARDS
   ======================================== */

.packages-section {
    background: var(--gray-50);
}

.packages-section .row {
    margin: 0 -10px;
}

.packages-section .row > [class*='col-'] {
    padding: 0 10px;
    margin-bottom: 20px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
    transform: translateY(-8px);
}

.package-featured {
    border-color: var(--primary-orange);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

.package-featured:hover {
    border-color: var(--primary-orange-dark);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.package-header {
    padding: 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.package-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 8px;
}

.price-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--gray-600);
    margin-top: 8px;
    margin-left: 8px;
}

.package-filing-time {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.package-body {
    padding: 32px;
    flex: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-orange);
    font-size: 18px;
    flex-shrink: 0;
}

.package-footer {
    padding: 32px;
    border-top: 2px solid var(--gray-100);
}

.package-footer .btn {
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.package-footer .btn-primary {
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

.package-footer .btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
    color: var(--white);
}

.package-footer .btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
}

.package-footer .btn-outline-primary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
}

.stat-item {
    padding: 32px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ========================================
   BLOG SECTION
   ======================================== */

.blog-section .row {
    margin: 0 -10px;
}

.blog-section .row > [class*='col-'] {
    padding: 0 10px;
    margin-bottom: 20px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
}

.blog-read-more:hover {
    color: var(--primary-orange-dark);
    gap: 8px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition-base);
}

.cta-buttons .btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.cta-buttons .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .hero-section-static {
        padding: 60px 0;
    }
    
    .hero-text-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-title-static {
        font-size: 42px;
        text-align: center;
    }
    
    .hero-subtitle-main {
        font-size: 18px;
        text-align: center;
    }
    
    .hero-quick-start {
        padding: 32px;
    }
    
    .quick-start-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .trust-heading {
        font-size: 32px;
        text-align: center;
        margin-top: 24px;
    }
    
    .trust-description {
        text-align: center;
    }
    
    .trust-badge-logo {
        max-width: 180px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Ensure proper spacing on tablet */
    .features-bar .row > [class*='col-'],
    .about-section .row > [class*='col-'],
    .packages-section .row > [class*='col-'],
    .blog-section .row > [class*='col-'] {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-section-static {
        padding: 40px 0;
    }
    
    .hero-text-content {
        margin-bottom: 32px;
        text-align: center;
    }
    
    .hero-title-static {
        font-size: 32px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .hero-subtitle-main {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-quick-start {
        padding: 24px;
    }
    
    .quick-start-title {
        font-size: 20px;
    }
    
    .quick-start-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .form-step {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        align-self: flex-start;
    }
    
    .form-step .form-select {
        width: 100%;
    }
    
    .btn-start-business {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .trust-heading {
        font-size: 24px;
    }
    
    .trust-badge-logo {
        max-width: 150px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    /* Mobile card spacing */
    .features-bar .row > [class*='col-'],
    .about-section .row > [class*='col-'],
    .packages-section .row > [class*='col-'],
    .blog-section .row > [class*='col-'] {
        margin-bottom: 16px;
    }
    
    .features-bar .row > [class*='col-']:last-child,
    .about-section .row > [class*='col-']:last-child,
    .packages-section .row > [class*='col-']:last-child,
    .blog-section .row > [class*='col-']:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .hero-title-static {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-subtitle-main {
        font-size: 15px;
        text-align: center;
    }
    
    .hero-quick-start {
        padding: 20px;
    }
    
    .quick-start-title {
        font-size: 18px;
    }
    
    .quick-start-subtitle {
        font-size: 13px;
    }
    
    .package-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 0;
}

.footer h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    text-align: left;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.footer .list-unstyled {
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer .list-unstyled li {
    margin-bottom: 12px;
    text-align: left;
}

.footer .list-unstyled li a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition-base);
    display: inline-block;
    text-align: left;
}

.footer .list-unstyled li a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.footer p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

.footer p a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer p a:hover {
    color: var(--primary-orange-light);
    text-decoration: underline;
}

/* Footer Bottom */
/* .footer .row.mt-4 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
} */

.footer .text-center p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-align: left;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 18px;
}

.footer-social-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-4px);
}

/* Mobile Footer Accordion */
.asked-accordion {
    margin-top: 40px;
}

.acordion-col-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.accordion-btn:hover {
    color: var(--primary-orange);
}

.accordion-btn i {
    transition: var(--transition-base);
    font-size: 14px;
}

.accordion-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 0 20px 0;
}

.accordion-body ul {
    margin: 0;
    padding: 0;
}

.accordion-body ul li {
    margin-bottom: 12px;
}

.accordion-body ul li a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.accordion-body ul li a:hover {
    color: var(--primary-orange);
}

/* Footer Responsive */
@media (max-width: 767px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer h5 {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .footer .list-unstyled,
    .footer .list-unstyled li,
    .footer .list-unstyled li a,
    .footer p {
        text-align: left;
    }
    
    .footer .row.mt-4 {
        margin-top: 40px !important;
        padding-top: 30px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons .btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   GLOBAL BUTTON IMPROVEMENTS
   ======================================== */

/* Primary Button - Orange */
.btn-primary {
    background: var(--primary-orange) !important;
    border: 2px solid var(--primary-orange) !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    background: var(--primary-orange-dark) !important;
    border-color: var(--primary-orange-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-orange-dark) !important;
    border-color: var(--primary-orange-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

/* Large Button */
.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 10px;
}

/* Button with Icon */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Outline Button */
.btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--primary-orange) !important;
    color: var(--primary-orange) !important;
}

.btn-outline-primary:hover {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

/* Secondary Button - Blue */
.btn-secondary {
    background: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
    color: var(--white) !important;
}

.btn-secondary:hover {
    background: var(--primary-blue-dark) !important;
    border-color: var(--primary-blue-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}

/* Link Button */
.btn-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background: var(--gray-900);
    color: var(--white);
    padding: 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-link {
    color: var(--gray-300);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 12px;
}

.top-bar-link:hover {
    color: var(--primary-orange);
}

.top-bar-link i {
    font-size: 11px;
}

.top-bar-login {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 12px;
}

.top-bar-login:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-1px);
}

.top-bar-login i {
    font-size: 11px;
}

.top-bar-cta {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.top-bar-cta:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.top-bar-cta i {
    font-size: 13px;
}

/* Responsive Top Bar */
@media (max-width: 767px) {
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .top-bar-left {
        margin-bottom: 6px;
    }
    
    .top-bar-link,
    .top-bar-login,
    .top-bar-cta {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .top-bar-link i,
    .top-bar-login i {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }
    
    .top-bar .col-md-6:first-child {
        margin-bottom: 6px;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Initial state - hidden */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state */
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up.animated {
    opacity: 1;
    transform: scale(1);
}

/* Trust Section Badge Animation */
.trust-badge-logo {
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Card Icon Animation */
.about-card-icon {
    position: relative;
    overflow: hidden;
}

.about-card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Stats Counter Animation */
.stat-number {
    display: inline-block;
}

.stat-item.animated .stat-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Blog Card Hover Animation */
.blog-card {
    position: relative;
    overflow: hidden;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.blog-card:hover::after {
    left: 100%;
}

/* Package Card Pulse on Hover */
.package-featured {
    animation: pulse-featured 2s ease-in-out infinite;
}

@keyframes pulse-featured {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
    }
    50% {
        box-shadow: 0 25px 50px rgba(249, 115, 22, 0.35);
    }
}

/* Feature Bar Items Stagger */
.feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }

/* Section Title Animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.8s ease-out;
}

.section-title.animated::after {
    width: 100%;
}

/* CTA Section Animation */
.cta-section .cta-title,
.cta-section .cta-description,
.cta-section .cta-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-section.animated .cta-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.cta-section.animated .cta-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.cta-section.animated .cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

