/* Apollo's Portfolio - Dark Red, Black & White Theme */
:root {
    /* Darker Color Palette */
    --primary-red: #ff0000;
    --dark-red: #cc0000;
    --darker-red: #990000;
    --light-red: #ff3333;
    --accent-red: #ff4d4d;
    --bg-black: #050505;
    --bg-dark: #0a0a0a;
    --bg-darker: #080808;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-white: #ffffff;
    --text-light: #f0f0f0;
    --text-gray: #666666;
    --border-dark: #222222;
    --border-light: #333333;
    --border-red: #440000;
    
    /* Gradients */
    --red-gradient: linear-gradient(135deg, var(--primary-red), var(--darker-red));
    --red-glow: 0 0 30px rgba(255, 0, 0, 0.5);
    --red-glow-light: 0 0 15px rgba(255, 0, 0, 0.3);
    
    /* Effects */
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-red);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.99);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo {
    height: 70px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-text {
    transition: var(--transition);
}

.nav-line {
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
    margin-top: 4px;
}

.nav-link:hover .nav-text {
    color: var(--text-white);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.nav-link:hover .nav-line {
    width: 100%;
}

.nav-cta .cta-btn {
    padding: 10px 24px;
    background: var(--red-gradient);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-cta .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.nav-cta .cta-btn:hover::before {
    left: 100%;
}

.nav-cta .cta-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--red-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-black), var(--bg-darker));
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--primary-red);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.highlight {
    color: var(--primary-red);
    position: relative;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--red-gradient);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--red-glow);
    border-color: rgba(255, 0, 0, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-shapes {
    position: relative;
    width: 400px;
    height: 400px;
}

.shape {
    position: absolute;
    background: var(--bg-card);
    border: 2px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    width: 140px;
    text-align: center;
}

.shape:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--red-glow);
    background: var(--bg-card-hover);
}

.shape-content i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.shape-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.shape-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-vertical 8s ease-in-out infinite;
}

.shape-2 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation: float-horizontal 7s ease-in-out infinite 1s;
}

.shape-3 {
    bottom: 20px;
    right: 20px;
    animation: float-diagonal 9s ease-in-out infinite 2s;
}

@keyframes float-vertical {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes float-horizontal {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

@keyframes float-diagonal {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(10px, -15px);
    }
    66% {
        transform: translate(-10px, 10px);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 24px auto 0;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    border-top: 1px solid var(--border-red);
    border-bottom: 1px solid var(--border-red);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-category {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.service-category:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--bg-card-hover);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-red);
    position: relative;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.service-category:hover .category-title::after {
    width: 100%;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.service-item:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: var(--primary-red);
    transform: translateX(5px);
    box-shadow: var(--red-glow-light);
}

.service-item.featured {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.4);
}

.service-item.featured:hover {
    background: rgba(255, 0, 0, 0.15);
    box-shadow: var(--red-glow);
}

.service-item.premium {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.5);
}

.service-item.premium:hover {
    background: rgba(255, 0, 0, 0.2);
    box-shadow: var(--red-glow);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.service-item.premium .featured-badge {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.service-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    transition: var(--transition);
    min-width: 70px;
    text-align: center;
}

.service-item:hover .service-price {
    border-color: var(--primary-red);
    box-shadow: var(--red-glow);
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    margin-top: 16px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.package-features::-webkit-scrollbar {
    width: 6px;
}

.package-features::-webkit-scrollbar-track {
    background: rgba(255, 0, 0, 0.1);
    border-radius: 3px;
}

.package-features::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.package-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.85rem;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.package-features li.bonus {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-top: 8px;
    border-left: 3px solid var(--primary-red);
}

.package-features li.bonus::before {
    content: '🎁';
    color: var(--primary-red);
}

/* Personal Graphics Section */
.personal-graphics {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--border-red);
}

.personal-graphics .section-header {
    margin-bottom: 60px;
}

.personal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.personal-column {
    display: flex;
    flex-direction: column;
}

/* Payment Info */
.payment-info {
    display: flex;
    justify-content: center;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    max-width: 500px;
    width: 100%;
}

.payment-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--bg-card-hover);
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-red);
    transition: var(--transition);
}

.payment-card:hover .payment-icon {
    border-color: var(--primary-red);
    background: rgba(255, 0, 0, 0.15);
    transform: translateY(-3px);
}

.payment-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.payment-icon:first-child i {
    color: #0070ba;
}

.payment-content {
    flex: 1;
}

.payment-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.payment-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 4px;
}

.payment-content strong {
    color: var(--text-white);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Work Section */
.work-section {
    padding: 120px 0;
    background: var(--bg-black);
    position: relative;
}

.work-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.work-item {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.work-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background: var(--bg-card-hover);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-placeholder {   
    background-color: var(--bg-darker);
}

.headerimg {
    height: 125px;
}

.lineup-placeholder {
    background-color: var(--bg-darker);
}

.mediaheader {
    height: 125px;
}

.thumbnail-placeholder {
    background-color: var(--bg-darker);
}

.thumbnail {
    height: 200px;
}

.placeholder-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 0, 0, 0.1);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.view-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-black);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.view-btn:hover {
    background: var(--text-white);
    color: var(--bg-black);
    border-color: var(--text-white);
}

.work-info {
    padding: 24px;
}

.work-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.work-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.work-cta {
    text-align: center;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-red);
    border-radius: var(--radius);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--red-glow);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.portfolio-link:hover .link-icon {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
    border-top: 1px solid var(--border-red);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 500px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: left;
    cursor: pointer;
}

.contact-method:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--bg-card-hover);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-red);
    transition: var(--transition);
}

.contact-method:hover .method-icon {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.method-content {
    flex: 1;
}

.method-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.method-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 8px;
}

.method-status {
    font-size: 0.85rem;
    color: #00ff00;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 4px;
    display: block;
}

.method-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.method-link:hover {
    color: var(--light-red);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-black);
    border-top: 1px solid var(--border-red);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.link-group a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--red-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-red);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-extra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.divider {
    color: var(--primary-red);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .personal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .work-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .personal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-container,
    .nav-container,
    .hero-container {
        padding: 0 24px;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .floating-shapes {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .shape {
        width: 120px;
        padding: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .payment-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }
    
    .service-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-price {
        align-self: flex-start;
    }
}