/* ========================================
   PREMIUM PURPLE THEME - CITYX RENTALS
   ======================================== */

/* ========================================
   CUSTOM PROPERTIES (Purple Theme)
   ======================================== */
:root {
    /* Purple Gradient Colors */
    --purple-primary: #7C3AED;
    --purple-secondary: #9333EA;
    --purple-dark: #6D28D9;
    --purple-light: #A78BFA;
    --purple-lighter: #DDD6FE;
    --purple-lightest: #F5F3FF;
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    --gradient-secondary: linear-gradient(135deg, #9333EA 0%, #DB2777 100%);
    --gradient-purple-pink: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-purple-blue: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
    
    /* Supporting Colors */
    --pink-accent: #EC4899;
    --blue-accent: #3B82F6;
    --teal-accent: #14B8A6;
    --orange-accent: #F59E0B;
    
    /* Neutral Colors */
    --dark-purple: #1E1B4B;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --border-light: #E5E7EB;
    --bg-white: #FFFFFF;
    --bg-gray: #F9FAFB;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.08);
    --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.12);
    --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.16);
    --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.2);
    --shadow-purple: 0 10px 40px rgba(124, 58, 237, 0.3);
    
    /* Font Families */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
.purple-theme {
    font-family: var(--font-secondary);
    overflow-x: hidden;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.top-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    opacity: 0.95;
}

.top-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.top-link i {
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: white;
    color: var(--purple-primary);
    transform: translateY(-3px);
}

/* ========================================
   MAIN HEADER
   ======================================== */
.main-header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
    transform: translateY(-40px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-purple);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary);
}

.brand-tagline {
    font-size: 11px;
    color: var(--text-medium);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-base);
    position: relative;
    font-size: 15px;
}

.nav-link i {
    font-size: 16px;
    opacity: 0.7;
}

.nav-link:hover {
    background: var(--purple-lightest);
    color: var(--purple-primary);
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-purple);
}

.nav-link.active i {
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-admin {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-admin:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-franchise {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-franchise:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.btn-outline:hover {
    background: var(--purple-primary);
    color: white;
    transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--purple-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right var(--transition-base);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-base);
}

.mobile-nav-link i {
    font-size: 18px;
    width: 25px;
    color: var(--purple-primary);
}

.mobile-nav-link:hover {
    background: var(--purple-lightest);
    padding-left: 30px;
}

.mobile-divider {
    height: 1px;
    background: var(--border-light);
    margin: 15px 20px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
}

.social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-mobile a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-links-mobile a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section-premium {
    position: relative;
    background: var(--gradient-primary);
    padding: 100px 0 120px;
    overflow: hidden;
    color: white;
}

/* Animated Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Text */
.hero-text {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #FDE68A 0%, #FCA5A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
}

/* Hero Search */
.hero-search {
    position: relative;
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 5px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: var(--purple-primary);
    font-size: 20px;
}

.search-box input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--purple-lightest);
    padding-left: 25px;
}

.suggestion-item i {
    color: var(--purple-primary);
    font-size: 18px;
}

.suggestion-item strong {
    display: block;
    font-weight: 600;
}

.suggestion-item small {
    display: block;
    color: var(--text-light);
    font-size: 13px;
}

.no-suggestions {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.hero-feature i {
    font-size: 20px;
    color: #FDE68A;
}

/* Hero Image Side */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--text-dark);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s infinite ease-in-out;
}

.floating-card i {
    font-size: 28px;
    color: var(--purple-primary);
}

.floating-card strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    left: 50px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-illustration {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   STATS COUNTER
   ======================================== */
.stats-counter {
    padding: 60px 0;
    background: white;
}

.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item-home {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-gray);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-item-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.stat-item-home:hover::before {
    transform: scaleX(1);
}

.stat-item-home:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-home {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-purple);
}

.stat-content h3 {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.stat-content p {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
}

/* ========================================
   CITIES SECTION PREMIUM
   ======================================== */
.cities-section-premium {
    padding: 80px 0;
    background: var(--bg-gray);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--purple-lightest);
    color: var(--purple-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-premium {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.cities-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.city-card-premium {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

.city-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.city-card-premium:hover .city-card-overlay {
    opacity: 0.05;
}

.city-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.city-card-content {
    position: relative;
    z-index: 2;
}

.city-icon-premium {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: all var(--transition-base);
}

.city-card-premium:hover .city-icon-premium {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-purple);
}

.city-name-premium {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.city-state-premium {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.city-stats {
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.property-count-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-lightest);
    color: var(--purple-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.city-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s;
    pointer-events: none;
}

.city-card-premium:hover .city-card-shine {
    left: 100%;
}

/* ========================================
   FEATURES SECTION PREMIUM
   ======================================== */
.features-section-premium {
    padding: 80px 0;
    background: white;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card-premium {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card-premium:hover::before {
    opacity: 0.05;
}

.feature-card-premium:hover {
    border-color: var(--purple-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    background: var(--purple-lightest);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--purple-primary);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.feature-card-premium:hover .feature-icon-premium {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

.feature-card-premium h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card-premium p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: var(--shadow-purple);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--purple-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    font-size: 36px;
    color: var(--purple-primary);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-medium);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--purple-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--purple-primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    transition: transform var(--transition-base);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* ========================================
   PREMIUM FOOTER
   ======================================== */
.premium-footer {
    background: var(--dark-purple);
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    padding: 50px 0;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.newsletter-content p {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-medium);
    font-size: 18px;
}

.input-group input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.btn-subscribe {
    background: var(--dark-purple);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Main */
.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple-primary);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-primary);
}

.footer-brand-tagline {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background: white;
    color: var(--purple-primary);
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.footer-links a i {
    font-size: 10px;
    opacity: 0.5;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    font-size: 18px;
    color: var(--purple-light);
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-contact span,
.footer-contact a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright i {
    color: #EF4444;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-purple);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration {
        height: 300px;
        font-size: 150px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-connector::after {
        left: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-header span {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title-premium {
        font-size: 32px;
    }
    
    .floating-card {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }
}