/**
 * Go Red Robot Design - Main Stylesheet
 * LATEST VERSION - Home page less bare, all spacing updates
 * Upload this to: /css/style.css
 */

/* ===== CSS VARIABLES ===== */
:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #d1d1d1;
    --text-muted: #888888;
    --accent-red: #e7473c;
    --accent-red-hover: #c93a30;
    --border-color: #2a2a2a;
    --success-green: #22c55e;
    
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 8px 16px rgba(231, 71, 60, 0.15);
}

/* ===== GLOBAL 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.7;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(231, 71, 60, 0.25) 0%,
        rgba(231, 71, 60, 0.15) 20%,
        rgba(231, 71, 60, 0.05) 35%,
        transparent 50%
    );
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-5%, 5%) scale(1.1);
    }
    66% {
        transform: translate(5%, -5%) scale(0.95);
    }
}

/* Twinkle stars effect */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(231, 71, 60, 0.8);
    animation: twinkle 3s infinite ease-in-out;
    pointer-events: none;
}

.particle:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-duration: 2.5s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 25%;
    right: 25%;
    animation-duration: 3s;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-duration: 2.8s;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 80%;
    animation-duration: 3.2s;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 30%;
    animation-duration: 2.7s;
    animation-delay: 2s;
}

.particle:nth-child(6) {
    top: 60%;
    left: 40%;
    animation-duration: 3.1s;
    animation-delay: 0.8s;
}

.particle:nth-child(7) {
    top: 70%;
    right: 15%;
    animation-duration: 2.9s;
    animation-delay: 1.2s;
}

.particle:nth-child(8) {
    bottom: 40%;
    left: 70%;
    animation-duration: 3.3s;
    animation-delay: 1.8s;
}

.particle:nth-child(9) {
    top: 10%;
    left: 45%;
    animation-duration: 2.6s;
    animation-delay: 0.3s;
    width: 1.5px;
    height: 1.5px;
}

.particle:nth-child(10) {
    top: 35%;
    right: 10%;
    animation-duration: 3.4s;
    animation-delay: 1.1s;
    width: 1.5px;
    height: 1.5px;
}

.particle:nth-child(11) {
    bottom: 15%;
    left: 55%;
    animation-duration: 2.9s;
    animation-delay: 0.6s;
    width: 1.5px;
    height: 1.5px;
}

.particle:nth-child(12) {
    top: 55%;
    left: 25%;
    animation-duration: 3.1s;
    animation-delay: 1.4s;
    width: 1.5px;
    height: 1.5px;
}

.particle:nth-child(13) {
    top: 80%;
    right: 40%;
    animation-duration: 2.8s;
    animation-delay: 0.9s;
    width: 1.5px;
    height: 1.5px;
}

.particle:nth-child(14) {
    top: 20%;
    left: 65%;
    animation-duration: 3.2s;
    animation-delay: 1.7s;
    width: 1.5px;
    height: 1.5px;
}

.particle:nth-child(15) {
    bottom: 25%;
    right: 20%;
    animation-duration: 2.7s;
    animation-delay: 0.4s;
    width: 1.5px;
    height: 1.5px;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scrolling glow effects */
.scroll-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(231, 71, 60, 0.2) 0%,
        rgba(231, 71, 60, 0.1) 30%,
        transparent 70%
    );
    pointer-events: none;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.scroll-glow.visible {
    opacity: 1;
}

.scroll-glow-1 {
    top: 20%;
    right: -200px;
}

.scroll-glow-2 {
    top: 50%;
    left: -200px;
}

.scroll-glow-3 {
    top: 75%;
    right: -150px;
}

/* Grid overlay effect */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(42, 42, 42, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 42, 42, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-red-hover);
}

/* ===== NAVIGATION ===== */
nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.currency-selector {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.currency-selector:hover {
    border-color: var(--accent-red);
    background: var(--bg-secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(231, 71, 60, 0.15) 0%,
        transparent 70%
    );
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

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

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .highlight {
    color: var(--accent-red);
    display: block;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--accent-red);
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.3);
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 71, 60, 0.4);
}

/* ===== CONTAINER & SECTIONS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 10rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: transparent;
    padding: 1rem 0 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(231, 71, 60, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: transparent;
    padding: 2rem 0 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

.about-card h3 {
    color: var(--accent-red);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-card ul li strong {
    color: var(--text-primary);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 2rem 0 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: var(--box-shadow-hover);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
}

.portfolio-placeholder i {
    font-size: 4rem;
    color: var(--accent-red);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.portfolio-placeholder p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 71, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.portfolio-link i {
    font-size: 2rem;
}

.portfolio-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: transparent;
    padding: 2rem 0 4rem;
}

.pricing-grid-monthly {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(231, 71, 60, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: var(--box-shadow-hover);
}

.pricing-card.featured {
    border-color: var(--accent-red);
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(231, 71, 60, 0.05) 100%
    );
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(231, 71, 60, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5e 100%);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.4);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.per-month {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-tagline {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.package-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    font-size: 0.9rem;
}

.features-list li i {
    color: var(--success-green);
    margin-right: 0.5rem;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.package-button {
    display: block;
    width: 100%;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--accent-red);
    margin-top: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.3);
}

.package-button:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 71, 60, 0.4);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 2px solid var(--accent-red);
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid var(--accent-red);
}

.comparison-table th {
    padding: 1rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th.feature-column {
    text-align: left;
    background: var(--bg-secondary);
}

.comparison-table th.featured-column {
    background: linear-gradient(135deg, rgba(231, 71, 60, 0.15) 0%, rgba(231, 71, 60, 0.05) 100%);
    border-left: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
}

.comparison-table .price-small {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 0.25rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(231, 71, 60, 0.05);
}

.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(20, 20, 20, 0.5);
}

.comparison-table td.featured-column {
    background: rgba(231, 71, 60, 0.03);
    border-left: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
    font-weight: 600;
}

.comparison-table .cta-row td {
    padding: 1.5rem 1rem;
    background: var(--bg-dark);
}

.table-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.table-cta-btn:hover {
    background: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.3);
}

.table-cta-btn.featured {
    background: var(--accent-red);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.3);
}

.table-cta-btn.featured:hover {
    background: transparent;
    color: var(--accent-red);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: transparent;
    padding: 2rem 0 4rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info a {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: var(--bg-dark);
    box-shadow: 0 0 0 3px rgba(231, 71, 60, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.3);
}

.submit-button:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 71, 60, 0.4);
}

/* ===== ALERTS ===== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--success-green);
    color: var(--success-green);
}

.alert-error {
    background: rgba(231, 71, 60, 0.1);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* ===== FOOTER ===== */
footer {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(231, 71, 60, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .pricing-grid-monthly {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-monthly {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 6rem 1rem 1rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .page-header {
        padding: 7rem 1rem 1rem;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .about,
    .contact,
    .portfolio,
    .pricing {
        padding: 1rem 0 3rem;
    }
    
    .services {
        padding: 0.5rem 0 3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section a {
        padding-left: 0 !important;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .comparison-table-wrapper {
        border-radius: 8px;
    }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-bg,
    .particle {
        animation: none !important;
    }
}