/* CvelooBusiness - ZenBusiness Clone Styles - Exact Match */

/* Font Display Optimization */
@font-face {
    font-family: 'FontAwesome';
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ZenBusiness Exact Color Palette - Matching ZenBusiness.com */
    --primary-green: #00A859;      /* Primary brand green - exact match */
    --primary-green-dark: #008748;  /* Darker green for hover */
    --primary-green-light: #33B879; /* Lighter green variant */
    --secondary-green: #00D96F;
    --accent-blue: #0066CC;         /* Banner blue */
    --text-dark: #1A1A1A;           /* Main text color */
    --text-gray: #666666;           /* Secondary text */
    --text-light: #999999;          /* Light text */
    --bg-white: #FFFFFF;            /* White background */
    --bg-light: #F8F9FA;            /* Light gray background */
    --bg-gray: #F5F5F5;             /* Gray background */
    --border-color: #E5E5E5;        /* Border color */
    --orange: #FF6B35;
    --yellow: #FFC107;
    --success: #00A859;              /* Success green */
    --danger: #DC3545;               /* Danger red */
    --gray-600: #666666;             /* Gray 600 */
    --gray-400: #9CA3AF;             /* Gray 400 */
    
    /* Fonts - ZenBusiness uses system fonts */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-size-base: 16px;
    --line-height-base: 1.5;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

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

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

/* Header Styles - Exact ZenBusiness Match */
header {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-banner {
    background: var(--accent-blue);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
}

.header-banner strong {
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    padding: 8px 0;
    display: block;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.search-icon {
    cursor: pointer;
    color: var(--text-gray);
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-primary:disabled,
.btn-primary.disabled {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.65;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover,
.btn-primary.disabled:hover {
    background: #6c757d !important;
    border-color: #6c757d !important;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-black {
    background: var(--text-dark);
    color: white;
    border: 1px solid var(--text-dark);
}

.btn-black:hover {
    background: #333;
    border-color: #333;
    color: white;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Hero Section - Exact ZenBusiness Style with Unique Touches */
.hero {
    position: relative;
    color: white;
    padding: 100px 0 120px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../images/hustle.avif') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Green overlay on top of background image for better text visibility */
/* All pages: 80% opacity */
.hero::before,
.hero-homepage::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 100, 60, 0.80) 0%, rgba(0, 80, 50, 0.80) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    display: block !important;
}

/* Ensure content is above overlay */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Green overlay removed - now using the overlay defined above */

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,168,89,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #ffffff;
    opacity: 1;
    font-weight: 500;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

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

.hero-cta {
    margin-bottom: 24px;
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
}

.trustpilot-badge .stars {
    color: var(--primary-green);
    font-size: 18px;
    letter-spacing: 2px;
}

.trustpilot-badge strong {
    font-weight: 600;
    margin-right: 4px;
}

/* Trust Indicators Section */
.trust-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    line-height: 1.2;
}

.trust-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Trust Indicators */
/* Mobile Responsive - Tablet and Below */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Header */
    .header-main {
        padding: 12px 0;
    }
    
    .header-main .container {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 32px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
        padding: 0 15px;
    }
    
    /* Trust Indicators */
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .trust-number {
        font-size: 28px;
    }
    
    .trust-label {
        font-size: 14px;
    }
    
    /* Feature Cards */
    .feature-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 24px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 16px;
    }
    
    /* Package Grid */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Feature Sections - Start Strong, Stay Protected, Strengthen and Grow */
.feature-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.feature-section.alt {
    background: var(--bg-light);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,168,89,0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.feature-section:hover .feature-icon::before {
    width: 300px;
    height: 300px;
}

.feature-section:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(0,168,89,0.4);
}

.feature-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.feature-visual {
    position: relative;
}

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-visual img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,168,89,0.1) 0%, rgba(0,102,204,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-visual img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,168,89,0.25);
    border: 2px solid rgba(0,168,89,0.2);
}

.feature-cards {
    display: grid;
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

/* Packages Section - Exact ZenBusiness Style */
.packages-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 0;
    align-items: stretch; /* Make all cards same height */
}

/* Ensure packages always display horizontally across all screen sizes - wider rectangles */
@media (min-width: 1400px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1399px) and (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* On smaller screens, show 1-2 packages */
@media (max-width: 767px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .package-name {
        font-size: 22px;
    }
    
    .package-price {
        font-size: 30px;
    }
}

/* Very small screens - single column */
@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.package-card {
    background: white;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-green);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%; /* Full width of grid cell */
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,168,89,0.2);
    border-color: var(--primary-green);
}

.package-card.popular {
    border-color: var(--primary-green);
    border-width: 2px;
    background: white;
    overflow: visible;
    position: relative;
    margin-top: 15px; /* Space for badge */
}

/* Popular badge styling */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, #00a859 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,168,89,0.3);
    z-index: 10;
    white-space: nowrap;
}

/* Package header with name and price side by side */
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    gap: 15px; /* Reduced gap to give more space to name */
    flex-wrap: nowrap; /* Prevent wrapping to keep name and price on same line */
    width: 100%; /* Ensure full width */
    min-height: auto; /* Allow natural height */
    overflow: visible; /* Ensure content is visible */
}

.package-name-wrapper {
    flex: 1 1 60%; /* Give more space to name (60% of available space) */
    min-width: 0;
    max-width: none; /* Remove max-width restriction */
    overflow: visible; /* Allow text to be visible */
    padding-right: 10px; /* Add spacing */
}

.package-price-wrapper {
    flex: 0 0 auto;
    min-width: 100px; /* Reduced minimum width for price */
    max-width: 140px; /* Maximum width for price */
    text-align: right;
    flex-shrink: 0; /* Don't shrink price */
    padding-left: 10px; /* Add spacing */
}

.package-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5; /* Increased line height for better readability */
    word-wrap: break-word; /* Allow breaking long words only at word boundaries */
    overflow-wrap: break-word; /* Modern property */
    word-break: normal; /* Normal word breaking - only at spaces */
    hyphens: none; /* Disable automatic hyphens */
    max-width: 100%; /* Ensure it doesn't exceed container */
    display: block; /* Ensure it's block level */
    overflow: visible; /* Ensure text is fully visible */
    white-space: normal; /* Allow text to wrap naturally */
    min-height: 1.5em; /* Minimum height to prevent cutting */
    width: 100%; /* Full width of container */
}

/* Responsive adjustments for package header */
@media (max-width: 768px) {
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .package-name-wrapper {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
    }
    
    .package-price-wrapper {
        width: 100%;
        text-align: left;
        padding-left: 0;
        min-width: auto;
    }
    
    .package-name {
        font-size: 22px;
    }
    
    .package-price {
        font-size: 28px;
    }
}

.package-popular-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 6px;
    display: block;
}

.package-description {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 48px; /* Consistent height for descriptions */
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    text-align: right;
    margin: 0;
    padding: 0;
    white-space: nowrap; /* Prevent price from wrapping */
    flex-shrink: 0; /* Don't allow price to shrink */
    display: block; /* Ensure it's a block element */
    word-break: keep-all; /* Prevent breaking */
    min-width: 120px; /* Ensure minimum width */
}

.package-price-note {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    padding-top: 8px;
}

.package-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1; /* Allow features to grow and push button down */
    padding: 0;
}

/* Ensure button stays at bottom of card */
.package-card .btn {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-special {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 168, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.package-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.package-special strong {
    color: var(--primary-green);
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-special ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.package-special li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-weight: 500;
}

.package-special li i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Steps Section */
.steps-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-initials {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-date {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0,168,89,0.1);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    background: white;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-check-label {
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
}

.alert-success {
    background: #E8F5E9;
    border: 1px solid var(--primary-green);
    color: #2E7D32;
}

.alert-danger {
    background: #FFEBEE;
    border: 1px solid #F44336;
    color: #C62828;
}

.alert-info {
    background: #E3F2FD;
    border: 1px solid #2196F3;
    color: #1565C0;
}

/* Footer - Exact ZenBusiness Style */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-section {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-column h4 {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background: var(--primary-green);
    color: white;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-bottom: 24px;
}

.table th,
.table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.table tr:hover {
    background: var(--bg-light);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #E8F5E9;
    color: #2E7D32;
}

.badge-warning {
    background: #FFF3E0;
    color: #E65100;
}

.badge-danger {
    background: #FFEBEE;
    color: #C62828;
}

.badge-primary {
    background: #E3F2FD;
    color: #1565C0;
}

/* Business Count Section */
.business-count-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.business-count {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -2px;
}

.business-count-label {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Packages grid keeps horizontal layout (defined above) */
    
    .feature-content {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive styles for new sections */
@media (max-width: 968px) {
    .business-growth-section > .container > div,
    .success-stories-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .services-overview-section > .container > div {
        grid-template-columns: 1fr !important;
    }
    
    .resources-section > .container > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

/* General Image Styles for Middle Sections */
.business-growth-section img,
.success-stories-section img,
.resources-section img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
}

/* Mobile Responsive Styles for Middle Sections */
@media (max-width: 768px) {
    /* Business Growth Section */
    .business-growth-section {
        padding: 60px 0 !important;
    }
    
    .business-growth-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .business-growth-section h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .business-growth-section p {
        font-size: 16px !important;
        margin-bottom: 24px !important;
    }
    
    .business-growth-section img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
        border-radius: 12px !important;
        margin-top: 20px;
        object-fit: cover;
    }
    
    /* Services Overview Section */
    .services-overview-section {
        padding: 60px 0 !important;
    }
    
    .services-overview-section > .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .services-overview-section h2 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }
    
    .services-overview-section > .container > div:first-child p {
        font-size: 16px !important;
    }
    
    /* Success Stories Section */
    .success-stories-section {
        padding: 60px 0 !important;
    }
    
    .success-stories-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .success-stories-section h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .success-stories-section p {
        font-size: 16px !important;
        margin-bottom: 24px !important;
    }
    
    .success-stories-section img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
        border-radius: 12px !important;
        object-fit: cover;
        order: -1; /* Show image first on mobile */
    }
    
    .success-stories-section > .container > div > div:last-child {
        order: 1; /* Show content second on mobile */
    }
    
    .success-stories-section > .container > div > div:first-child {
        order: 0; /* Image first */
    }
    
    .success-stories-section > .container > div > div:last-child > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .success-stories-section > .container > div > div:last-child > div > div {
        text-align: center;
    }
    
    .success-stories-section > .container > div > div:last-child > div > div > div:first-child {
        font-size: 36px !important;
    }
    
    .success-stories-section > .container > div > div:last-child > div > div > div:last-child {
        font-size: 14px !important;
    }
    
    /* Resources Section */
    .resources-section {
        padding: 60px 0 !important;
    }
    
    .resources-section > .container > div:first-child {
        margin-bottom: 40px !important;
    }
    
    .resources-section h2 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }
    
    .resources-section > .container > div:first-child p {
        font-size: 16px !important;
    }
    
    .resources-section > .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .resources-section > .container > div:last-child > div {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 24px !important;
    }
    
    .resources-section > .container > div:last-child > div > div:first-child {
        width: 100% !important;
        height: 200px !important;
    }
    
    .resources-section img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .resources-section h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .resources-section > .container > div:last-child > div p {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .business-growth-section,
    .services-overview-section,
    .success-stories-section,
    .resources-section {
        padding: 40px 0 !important;
    }
    
    .business-growth-section h2,
    .success-stories-section h2,
    .services-overview-section h2,
    .resources-section h2 {
        font-size: 24px !important;
    }
    
    .business-growth-section p,
    .success-stories-section p,
    .services-overview-section > .container > div:first-child p,
    .resources-section > .container > div:first-child p {
        font-size: 15px !important;
    }
    
    .business-growth-section > .container > div > div:first-child > div {
        gap: 16px !important;
    }
    
    .business-growth-section > .container > div > div:first-child > div > div {
        padding: 16px !important;
    }
    
    .services-overview-section > .container > div:last-child > div {
        padding: 24px !important;
    }
    
    .resources-section > .container > div:last-child > div {
        padding: 20px !important;
    }
    
    .resources-section > .container > div:last-child > div > div:first-child {
        height: 180px !important;
    }
    
    .success-stories-section > .container > div > div:last-child > div {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .success-stories-section > .container > div > div:last-child > div > div > div:first-child {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        min-height: 500px;
        padding: 60px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-text h2 {
        font-size: 28px;
    }
    
    .package-price {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-2 {
    gap: 20px;
}

/* Dashboard Styles */
.dashboard-container {
    padding: 40px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.dashboard-card h3 {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-card .value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}
