/* Import Public Sans font */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&display=swap');

/* Animations */
@keyframes pulseBlue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 74, 173, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0);
    }
}

/* Reset and base styling */
html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Public Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #1e1e1e;
    background-color: white;
    line-height: 1.6;
    overflow-x: hidden;
    margin-bottom: 0;
}

/* Primary accent color - Modern design system */
:root {
    /* Primary colors - vibrant blue like Creator wizard */
    --primary-color: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.12);
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

    /* Success/accent colors */
    --success-color: #10b981;
    --success-light: #d1fae5;
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);

    /* Orange accent for popular */
    --accent-orange: #ff6b35;
    --accent-orange-light: #fff4e5;

    /* Text colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;

    /* Backgrounds */
    --background-light: #f9fafb;
    --background-white: #ffffff;

    /* Borders */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;

    /* Modern shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 4px 15px rgba(37, 99, 235, 0.25);
    --shadow-primary-lg: 0 8px 25px rgba(37, 99, 235, 0.35);

    /* Border radius - larger, more modern */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

    a:hover {
        color: var(--primary-light);
        text-decoration: none;
    }

/* Buttons - Modern design with gradients and micro-interactions */
.btn-primary, .defaultButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-align: center;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

    .btn-primary::before, .defaultButton::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-primary:active::before, .defaultButton:active::before {
        width: 300px;
        height: 300px;
    }

    .btn-primary i, .defaultButton i {
        font-size: 0.9em;
    }

    .btn-primary:hover, .defaultButton:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-primary-lg);
        color: white;
    }

    .btn-primary:active, .defaultButton:active {
        transform: translateY(0) scale(0.98);
        box-shadow: var(--shadow-primary);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-align: center;
}

    .btn-secondary i {
        font-size: 0.9em;
    }

    .btn-secondary:hover {
        background-color: var(--background-light);
        border-color: var(--text-secondary);
        color: var(--text-primary);
        transform: translateY(-2px);
    }

    .btn-secondary:active {
        transform: translateY(0);
    }

/* Large button variant */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.promo-badge i {
    font-size: 0.7rem;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-highlight {
    font-weight: 700;
    color: #4fc3f7;
}

.promo-thanks {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-style: italic;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.promo-cta:hover {
    background: #4fc3f7;
    color: white;
    transform: translateX(3px);
}

.promo-cta i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.promo-cta:hover i {
    transform: translateX(3px);
}

/* Adjust header position for promo banner */
body:has(.promo-banner) .main-header {
    top: 44px;
}

body:has(.promo-banner) .content-wrapper {
    padding-top: 124px; /* 80px for header + 44px for promo banner */
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 8px 12px;
    }

    .promo-banner-content {
        gap: 10px;
    }

    .promo-badge {
        padding: 3px 10px;
        font-size: 0.65rem;
    }

    .promo-text {
        font-size: 0.78rem;
        text-align: center;
    }

    .promo-thanks {
        display: none;
    }

    .promo-cta {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    body:has(.promo-banner) .main-header {
        top: 38px;
    }

    body:has(.promo-banner) .content-wrapper {
        padding-top: 118px; /* 80px for header + 38px for promo banner */
    }
}

@media (max-width: 480px) {
    .promo-badge span {
        display: none;
    }

    .promo-badge {
        padding: 6px;
        border-radius: 50%;
    }

    .promo-badge i {
        font-size: 0.8rem;
    }
}

/* Header styles - Modern, clean design */
.main-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.875rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

    .main-header.sticky {
        padding: 0.625rem 0;
        border-bottom-color: var(--border-color);
        box-shadow: var(--shadow-sm);
    }

.header-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.02);
}

.header-logo {
    height: 42px;
    transition: all var(--transition-smooth);
}

.main-header.sticky .header-logo {
    height: 36px;
}

@media (max-width: 768px) {
    .header-logo {
        height: 32px;
    }

    .main-header.sticky .header-logo {
        height: 28px;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: transparent;
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    font-size: 0.8125rem;
    font-weight: 500;
}

    .login-button i {
        font-size: 0.75rem;
    }

    .login-button:hover {
        color: var(--primary-color);
        border-color: var(--primary-color);
        background-color: var(--primary-glow);
    }

.pricing-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    transition: all var(--transition-bounce);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
}

    .pricing-button i {
        font-size: 0.75rem;
    }

    .pricing-button:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: var(--shadow-primary-lg);
        color: white;
    }

/* Content wrapper */
.content-wrapper {
    padding-top: 80px; /* Space for fixed header */
}

/* Section container */
.section-container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

/* Hero section */
.hero-section {
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.hero-image {
    margin-bottom: 2.5rem;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary-color);
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all var(--transition-base);
}

.cta-badge:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.cta-badge i {
    font-size: 1rem;
    color: var(--primary-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Features section */
.features-section {
    padding: 0.25rem 0;
    background-color: white;
}

/* Benefits section */
.benefits-section {
    padding: 1.25rem 0;
    background-color: white;
}

/* Testimonials section */
.testimonials-section {
    padding: 0.25rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -0.625rem;
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
        height: 4px;
        background: var(--primary-gradient);
        border-radius: var(--radius-full);
    }

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
    transition: all var(--transition-base);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.8;
    transform: scale(1.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: var(--text-primary);
}

.author-business {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* CTA Section - Modern gradient with glass effect */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 4rem 1.5rem;
    box-shadow: var(--shadow-primary-lg);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
        z-index: 0;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
        animation: cta-pulse 15s ease-in-out infinite;
        z-index: 0;
    }

@keyframes cta-pulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.1; }
}

.cta-section .section-container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-section .cta-badges {
    margin-bottom: 1.5rem;
}

.cta-section .cta-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cta-section .cta-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-section .cta-badge i {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

    .cta-section .btn-primary:hover {
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary-dark);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

/* Forms */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

    .form-floating input {
        height: calc(3.5rem + 2px);
        line-height: 1.25;
        padding: 1rem 0.75rem;
        font-size: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        background-color: var(--background-white);
        width: 100%;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-floating label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 1rem 0.75rem;
        overflow: hidden;
        text-align: start;
        text-overflow: ellipsis;
        white-space: nowrap;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity .1s ease-in-out, transform .1s ease-in-out;
        color: var(--text-secondary);
        z-index: 1;
    }

    .form-floating input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem var(--primary-glow);
        outline: 0;
    }

        .form-floating input:focus ~ label,
        .form-floating input:not(:placeholder-shown) ~ label {
            opacity: .65;
            transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
            background-color: white;
            padding: 0 0.5rem;
            margin-left: 0.5rem;
            height: auto;
        }

/* Footer Styles */
.site-footer {
    background-color: white;
    padding: 4rem 0 2rem;
    color: var(--text-primary);
}

.footer-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 2rem;
    text-align: center;
}

    .footer-logo img {
        height: 40px;
        margin-bottom: 1rem;
    }

.footer-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 0.75rem;
    }

        .footer-col ul li a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: var(--primary-color);
            }

.social-links {
    display: flex;
    gap: 1rem;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: var(--primary-glow);
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

/* Media queries */
@media (min-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .cta-buttons {
        gap: 1.5rem;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-logo {
        width: 25%;
        text-align: left;
        margin-bottom: 0;
    }

    .footer-links {
        width: 70%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-logo {
        width: 20%;
    }

    .footer-links {
        width: 75%;
    }
}

@media (max-width: 767px) {
    .cta-badges {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
    }

    .cta-badge {
        flex: 1;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        justify-content: center;
    }

    .cta-badge i {
        font-size: 1rem;
        margin-right: 0.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .footer-logo {
        margin-bottom: 2.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .cta-badges {
        gap: 0.3rem;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }

    .cta-badge i {
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }

    .cta-badge span {
        font-size: 0.7rem;
    }
}

/* Trial ended alert styles */
.trial-ended-alert {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
}

.trial-ended-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.trial-ended-content i {
    margin-right: 0.5rem;
}

.trial-ended-alert .btn {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .trial-ended-content {
        flex-direction: column;
        text-align: center;
    }

    .trial-ended-alert .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ==========================================================================
   Modern Animations and Micro-interactions
   Only for IndexHome and Pricing pages - NOT for Creator wizard
   ========================================================================== */

/* Fade-in animation for page elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations only to specific home/pricing page elements */
.content-wrapper > .hero-section,
.content-wrapper > .features-section,
.content-wrapper > .benefits-section,
.content-wrapper > .testimonials-section {
    animation: fadeInUp 0.6s ease-out forwards;
}

.content-wrapper .hero-content {
    animation: fadeInScale 0.5s ease-out 0.1s forwards;
}

/* Testimonials stagger - only for home page */
.content-wrapper .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.content-wrapper .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.content-wrapper .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.content-wrapper .testimonial-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Focus states - only for non-wizard inputs */
.content-wrapper input:focus,
.content-wrapper textarea:focus,
.content-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Interactive link underline effect */
.footer-col ul li a {
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-smooth);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Social links hover animation */
.social-links a {
    transition: all var(--transition-bounce);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-primary);
}

/* Smooth image loading - only for home page */
.content-wrapper .responsive-image {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.content-wrapper .responsive-image:hover {
    transform: scale(1.01);
}

/* Card shine effect on hover - only for pricing page */
.pricing-plans-section .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.pricing-plans-section .pricing-card:hover::before {
    left: 100%;
}

/* Testimonial card shine - only for home page */
.content-wrapper .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.content-wrapper .testimonial-card:hover::before {
    left: 100%;
}
