/* ===================================
   HOME PAGE REDESIGN - STANDALONE CSS
   Modern, Responsive, Space-Optimized
   =================================== */

/* CSS Variables for Easy Theming */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --accent-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-primary: #0f0f1e;
    --bg-secondary: #1a1a2e;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f7fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
}

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

/* ===================================
   NAVBAR RESPONSIVE FIXES
   =================================== */
.navbar {
    padding: 12px 24px;
}

.navbar .container {
    max-width: 100%;
    padding: 0;
}

.navbar .flex {
    display: flex;
    flex-wrap: wrap;
}

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

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

.navbar .gap-3 {
    gap: 12px;
}

.navbar-logo img {
    height: 40px;
}

.navbar-logo span {
    font-size: 20px;
}

/* ===================================
   HERO SECTION - REDESIGNED
   =================================== */
.hero-redesign {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 10px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-badge:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-redesign {
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary-redesign {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary-redesign:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary-redesign {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary-redesign:hover {
    background: var(--bg-card-hover);
    border-color: #667eea;
}

.hero-features-list {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-feature-item svg {
    color: #4facfe;
    flex-shrink: 0;
}

/* Hero Visual - Stats Grid */
.hero-visual-redesign {
    position: relative;
    z-index: 2;
}

.stats-grid-redesign {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.stat-card-redesign {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: var(--transition);
}

.stat-card-redesign:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: var(--card-shadow-hover);
}

.stat-icon-redesign {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    animation: float 3s ease-in-out infinite;
}

.stat-number-redesign {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label-redesign {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   FEATURES SECTION - COMPACT
   =================================== */
.features-compact {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-card-compact {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card-compact:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: var(--card-shadow-hover);
}

.feature-card-compact:hover::before {
    transform: scaleX(1);
}

.feature-icon-compact {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-title-compact {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-desc-compact {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   HOW IT WORKS - STREAMLINED
   =================================== */
.how-it-works-streamlined {
    padding: var(--spacing-2xl) 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step-card {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

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

/* ===================================
   SHOWCASE SECTION - OPTIMIZED & COMPACT
   =================================== */
.showcase-optimized {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

/* Compact Showcase Grid */
.showcase-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.showcase-item-compact {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    transition: var(--transition);
}

.showcase-item-compact:hover {
    border-color: #667eea;
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.showcase-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: var(--spacing-md);
}

.showcase-category span:first-child {
    font-size: 18px;
}

.comparison-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.comparison-image-compact {
    flex: 1;
    max-width: 45%;
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.comparison-image-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.comparison-image-compact img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-label-compact {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.label-before-compact {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.label-after-compact {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.comparison-arrow-compact {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.comparison-arrow-compact svg {
    color: white;
}

.showcase-caption-compact {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    font-weight: 500;
}



/* ===================================
   CTA SECTION - MODERN
   =================================== */
.cta-modern {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.cta-box-modern {
    position: relative;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.cta-box-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: white;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta-box-modern .btn-primary-redesign {
    background: white;
    color: #667eea;
}

.cta-box-modern .btn-primary-redesign:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-box-modern .btn-secondary-redesign {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-box-modern .btn-secondary-redesign:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-features {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.cta-feature svg {
    color: white;
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet & Below (991px and down) */
@media (max-width: 991px) {
    .hero-redesign {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .stats-grid-redesign {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    .stat-card-redesign {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .stat-icon-redesign {
        font-size: 2rem;
    }
    
    .stat-number-redesign {
        font-size: 2rem;
    }
    
    .features-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .feature-card-compact {
        padding: var(--spacing-md);
    }
    
    .feature-icon-compact {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-title-compact {
        font-size: 1.125rem;
    }
    
    .feature-desc-compact {
        font-size: 14px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-card {
        padding: var(--spacing-md);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .showcase-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .comparison-image-compact {
        max-width: 48%;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .showcase-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .comparison-compact {
        gap: 10px;
    }
    
    .comparison-arrow-compact {
        width: 35px;
        height: 35px;
    }
    
    .comparison-arrow-compact svg {
        width: 16px;
        height: 16px;
    }
    
    .showcase-category {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .showcase-caption-compact {
        font-size: 13px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-card {
        padding: var(--spacing-md);
        background: var(--bg-card);
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius-md);
    }
}

/* Mobile (767px and down) */
@media (max-width: 767px) {
    :root {
        --spacing-xl: 40px;
        --spacing-2xl: 60px;
    }
    
    /* Navbar Mobile Fixes */
    .navbar {
        padding: 10px 16px;
    }
    
    .navbar .container {
        padding: 0;
    }
    
    .navbar .flex {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .navbar-logo {
        flex-shrink: 0;
    }
    
    .navbar-logo img {
        height: 35px;
    }
    
    .navbar-logo span {
        font-size: 18px;
    }
    
    .navbar .gap-3 {
        gap: 6px;
    }
    
    .btn-sm {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .btn-ghost {
        padding: 6px 10px;
    }
    
    .theme-toggle-btn {
        padding: 6px;
    }
    
    .navbar-user-name {
        display: none;
    }
    
    .hero-redesign {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-redesign {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-features-list {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Free Photoshoot Banner - Mobile */
    .free-photoshoot-banner {
        padding: 12px;
        margin-top: var(--spacing-sm);
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .free-photoshoot-content {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .free-photoshoot-icon {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .free-photoshoot-text {
        min-width: 0;
        flex: 1 1 auto;
        max-width: 100%;
    }
    
    .free-photoshoot-title {
        font-size: 12px;
        word-wrap: break-word;
    }
    
    .free-photoshoot-subtitle {
        font-size: 10px;
        word-wrap: break-word;
    }
    
    .free-photoshoot-btn {
        padding: 6px 10px;
        font-size: 11px;
        flex-shrink: 0;
    }
    
    .hero-content-wrapper {
        max-width: 100%;
        overflow: visible;
    }
    
    .col-lg-6 {
        padding: 0 12px;
        overflow: visible;
    }
    
    .stats-grid-redesign {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-card-redesign {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .stat-icon-redesign {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .stat-number-redesign {
        font-size: 1.75rem;
    }
    
    .stat-label-redesign {
        font-size: 12px;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .showcase-optimized {
        padding: var(--spacing-lg) 0;
    }
    
    .showcase-grid-compact {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .showcase-item-compact {
        padding: var(--spacing-md);
        max-width: 500px;
        margin: 0 auto;
    }
    
    .showcase-category {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .comparison-compact {
        gap: var(--spacing-sm);
    }
    
    .comparison-image-compact {
        max-width: 45%;
    }
    
    .comparison-arrow-compact {
        width: 40px;
        height: 40px;
    }
    
    .comparison-arrow-compact svg {
        width: 18px;
        height: 18px;
    }
    
    .showcase-caption-compact {
        font-size: 14px;
    }
    
    .features-compact {
        padding: var(--spacing-lg) 0;
    }
    
    .features-grid-compact {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card-compact {
        padding: var(--spacing-md);
    }
    
    .how-it-works-streamlined {
        padding: var(--spacing-lg) 0;
    }
    
    .steps-container {
        gap: var(--spacing-md);
        max-width: 500px;
    }
    
    .step-card {
        padding: var(--spacing-md);
        background: var(--bg-card);
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius-md);
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .cta-modern {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-box-modern {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: var(--border-radius-md);
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
}

/* Small Mobile (576px and down) */
@media (max-width: 576px) {
    /* Navbar Small Mobile */
    .navbar {
        padding: 8px 14px;
    }
    
    .navbar .flex.items-center.gap-3 {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .navbar-logo img {
        height: 32px;
    }
    
    .navbar-logo span {
        font-size: 17px;
    }
    
    .btn-sm {
        padding: 6px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    /* Free Photoshoot Banner - Small Mobile */
    .free-photoshoot-banner {
        padding: 10px;
        margin-top: var(--spacing-sm);
        margin-left: 0;
        margin-right: 0;
    }
    
    .free-photoshoot-content {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .free-photoshoot-icon {
        font-size: 16px;
        align-self: flex-start;
    }
    
    .free-photoshoot-text {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .free-photoshoot-title {
        font-size: 11px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .free-photoshoot-subtitle {
        font-size: 9px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .free-photoshoot-btn {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 11px;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .stats-grid-redesign {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .stat-card-redesign {
        padding: var(--spacing-sm);
    }
    
    .stat-icon-redesign {
        font-size: 1.5rem;
    }
    
    .stat-number-redesign {
        font-size: 1.5rem;
    }
    
    .showcase-item-compact {
        max-width: 100%;
    }
    
    .comparison-compact {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .comparison-image-compact {
        width: 100%;
        max-width: 100%;
    }
    
    .comparison-arrow-compact {
        transform: rotate(90deg);
        margin: var(--spacing-xs) 0;
        width: 35px;
        height: 35px;
    }
    
    .comparison-arrow-compact svg {
        width: 16px;
        height: 16px;
    }
    
    .showcase-category {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .showcase-category span:first-child {
        font-size: 18px;
    }
    
    .image-label-compact {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9375rem;
    }
}

/* Extra Small Mobile (400px and down) */
@media (max-width: 400px) {
    /* Navbar Extra Small */
    .navbar {
        padding: 8px 12px;
    }
    
    .navbar-logo img {
        height: 30px;
    }
    
    .navbar-logo span {
        font-size: 16px;
    }
    
    .btn-sm {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .btn-ghost {
        padding: 5px 8px;
    }
    
    /* Hide Free Photoshoot text on very small screens */
    .navbar .btn-ghost:not(.theme-toggle-btn) {
        font-size: 18px;
        padding: 5px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-redesign {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .stat-card-redesign {
        padding: var(--spacing-sm);
    }
    
    .feature-card-compact,
    .showcase-item-compact {
        padding: var(--spacing-sm);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--spacing-sm) * -1);
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 var(--spacing-sm);
    overflow: hidden;
}

@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: var(--spacing-lg);
        overflow: hidden;
    }
}

.row {
    overflow: hidden;
}

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

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mb-lg-0 {
        margin-bottom: var(--spacing-lg);
    }
}


/* ===================================
   FREE PHOTOSHOOT BANNER
   =================================== */
.free-photoshoot-banner {
    margin-top: var(--spacing-md);
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.free-photoshoot-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.free-photoshoot-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.free-photoshoot-text {
    flex: 1;
    min-width: 150px;
}

.free-photoshoot-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.free-photoshoot-subtitle {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
}

.free-photoshoot-btn {
    padding: 8px 16px;
    background: #10b981;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.free-photoshoot-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ===================================
   RESPONSIVE NAVIGATION
   =================================== */

/* Navbar Wrapper */
.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Menu Button */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.navbar-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Menu */
.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    margin-top: 8px;
    padding: 8px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.navbar-mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-mobile-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-mobile-item:hover {
    background: var(--bg-card-hover);
    color: #667eea;
}

.navbar-mobile-item-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    font-weight: 600;
    margin-top: 4px;
}

.navbar-mobile-item-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
    transform: translateY(-2px);
}

.navbar-mobile-user {
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4px;
}

.navbar-mobile-form {
    margin: 0;
}

.navbar-mobile-form button {
    font-family: inherit;
}

/* Desktop Menu - Always Visible on Desktop */
.navbar-desktop-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Navbar positioning */
.navbar {
    position: relative;
}

.navbar .container {
    position: relative;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Breakpoints */

/* Tablet and below (991px) */
@media (max-width: 991px) {
    .navbar-hamburger {
        display: flex;
    }
    
    .navbar-desktop-menu {
        display: none;
    }
    
    .navbar-right {
        gap: 10px;
    }
    
    .nav-free-photoshoot {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    .navbar-logo span {
        font-size: 20px !important;
    }
    
    .navbar-logo img {
        height: 38px !important;
    }
    
    .navbar-right {
        gap: 8px;
    }
    
    .nav-free-photoshoot {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .theme-toggle-btn {
        padding: 8px !important;
    }
    
    .navbar-mobile-menu {
        right: 16px;
        left: 16px;
        min-width: auto;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .nav-free-photoshoot {
        display: none;
    }
    
    .navbar-hamburger {
        width: 24px;
        height: 20px;
    }
    
    .navbar-hamburger span {
        height: 2.5px;
    }
    
    .navbar-hamburger.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .navbar-hamburger.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .navbar-logo span {
        font-size: 18px !important;
    }
    
    .navbar-logo img {
        height: 35px !important;
    }
}
