/* ====================================
   DigiCard - Digital Business Card App
   Main Stylesheet
   ==================================== */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f43f5e;
    --accent-color: #06b6d4;
    --dark-color: #0f172a;
    --dark-secondary: #1e293b;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--dark-color);
}

.btn-outline-secondary:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.3);
    bottom: -100px;
    left: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Hero Cards Showcase */
.hero-cards-showcase {
    position: relative;
    height: 600px;
    z-index: 1;
}

.floating-card {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 30%;
    right: 0;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: 25%;
    animation-delay: 2s;
}

.card-preview {
    width: 220px;
    padding: 24px;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-preview.modern {
    background: white;
}

.card-preview.modern .card-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--gradient-primary);
}

.card-preview.elegant {
    background: #1a1a2e;
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.card-preview.elegant .card-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.card-preview.minimal {
    background: white;
    border: 1px solid var(--gray-200);
}

.card-preview .profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.card-preview .profile-img i {
    font-size: 24px;
    color: var(--gray-400);
}

.card-preview h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.card-preview p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.card-preview.elegant p {
    color: rgba(255, 255, 255, 0.7);
}

.card-preview .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.card-preview .social-icons i {
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.card-preview.elegant .social-icons i {
    color: #ffd700;
}

.card-preview .contact-info {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.card-preview .contact-info span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-preview .contact-info i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   Section Headers
   ==================================== */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   Features Section
   ==================================== */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    padding: 32px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: var(--gray-200);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-500);
    margin: 0;
}

/* ====================================
   Templates Section
   ==================================== */
.templates-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.template-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 30px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.template-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.template-preview {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.template-modern {
    background: linear-gradient(180deg, #6366f1 0%, #6366f1 40%, white 40%);
}

.template-elegant {
    background: #1a1a2e;
    color: white;
}

.template-elegant .preview-border {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
}

.template-minimal {
    background: white;
    border: 1px solid var(--gray-200);
}

.template-creative {
    background: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
    color: white;
}

.template-creative .preview-shapes .shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.template-creative .preview-shapes .shape-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.template-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.template-gradient {
    background: var(--gradient-primary);
    color: white;
}

/* NEW TEMPLATES STYLES */
.template-neon {
    background: #0a0a0a;
    color: #00ff88;
    border: 2px solid #00ff88;
    box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.template-neon .preview-avatar {
    background: transparent;
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.template-neon .preview-avatar i {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.template-neon .preview-content h5 {
    text-shadow: 0 0 10px #00ff88;
}

.template-neon .preview-icons i {
    color: #00d4ff;
    text-shadow: 0 0 5px #00d4ff;
}

.template-glass {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.template-glass::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.template-glass .preview-avatar,
.template-glass .preview-content {
    position: relative;
    z-index: 1;
}

.template-glass .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.template-glass .preview-avatar i {
    color: white;
}

.template-corporate {
    background: linear-gradient(180deg, #1e3a5f 0%, #1e3a5f 35%, #f8f9fa 35%);
    color: #1e3a5f;
}

.template-corporate .preview-avatar {
    background: white;
    border: 3px solid #1e3a5f;
}

.template-corporate .preview-avatar i {
    color: #1e3a5f;
}

.template-corporate .preview-content h5 {
    color: #1e3a5f;
}

.template-tech {
    background: #0f0f23;
    color: #00d4ff;
    border-left: 4px solid #00d4ff;
    position: relative;
}

.template-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.template-tech .preview-avatar,
.template-tech .preview-content {
    position: relative;
    z-index: 1;
}

.template-tech .preview-avatar {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    border-radius: 12px;
}

.template-tech .preview-avatar i {
    color: #00d4ff;
}

.template-luxury {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    color: #ffd700;
    position: relative;
}

.template-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.template-luxury .preview-avatar,
.template-luxury .preview-content {
    position: relative;
    z-index: 1;
}

.template-luxury .preview-avatar {
    background: transparent;
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.template-luxury .preview-avatar i {
    color: #ffd700;
}

.template-ocean {
    background: linear-gradient(180deg, #0077b6 0%, #00b4d8 50%, #90e0ef 100%);
    color: white;
    position: relative;
}

.template-ocean::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23caf0f8' fill-opacity='0.3' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.template-ocean .preview-avatar {
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid white;
}

.template-ocean .preview-avatar i {
    color: white;
}

.template-preview .preview-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
}

.template-preview .preview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

.template-elegant .preview-avatar,
.template-dark .preview-avatar,
.template-gradient .preview-avatar,
.template-creative .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.template-preview .preview-avatar i {
    font-size: 28px;
    color: var(--gray-400);
}

.template-elegant .preview-avatar i,
.template-dark .preview-avatar i,
.template-gradient .preview-avatar i,
.template-creative .preview-avatar i {
    color: rgba(255, 255, 255, 0.8);
}

.template-preview .preview-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.template-preview .preview-content h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.template-preview .preview-content p {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 16px;
}

.template-preview .preview-line {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 16px auto;
}

.template-preview .preview-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.template-preview .preview-icons i {
    font-size: 0.875rem;
    opacity: 0.7;
}

.template-info {
    padding: 24px;
    text-align: center;
}

.template-info h5 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.template-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ====================================
   How It Works Section
   ==================================== */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.step-card {
    padding: 40px 32px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-card:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
}

.step-card:hover .step-number {
    color: rgba(99, 102, 241, 0.1);
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-card h4 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.step-card p {
    color: var(--gray-500);
    margin: 0;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: -32px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 8px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--gray-500);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.pricing-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-note i {
    color: var(--primary-color);
}

/* ====================================
   Testimonials Section
   ==================================== */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    padding: 32px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.25rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -300px;
    right: -200px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    padding: 80px 0 24px;
    background: var(--dark-color);
    color: white;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.footer-brand h3 i {
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer h5 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer p {
    color: var(--gray-400);
    margin-bottom: 16px;
}

.newsletter-form .input-group {
    border-radius: 12px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 14px 20px;
}

.newsletter-form .form-control::placeholder {
    color: var(--gray-400);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    padding: 14px 24px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-400);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ====================================
   Responsive Styles
   ==================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cards-showcase {
        display: none;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-buttons {
        margin-top: 16px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .features-section,
    .templates-section,
    .how-it-works-section,
    .pricing-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}
