* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #60a5fa;
    --accent-color: #93c5fd;
    --text-dark: #f3f4f6;
    --text-light: #d1d5db;
    --text-muted: #9ca3af;
    --bg-dark: #0f0f0f;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --bg-card-hover: #262626;
    --bg-light: #2a2a2a;
    --bg-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --bg-gradient-dark: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Floating Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.8) 0%, transparent 70%);
    top: 60%;
    left: 60%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Animations with reduced motion support */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes heroGlow {
    0% {
        opacity: 0;
        filter: blur(10px);
        text-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        opacity: 1;
        filter: blur(0);
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.8),
                     0 0 60px rgba(59, 130, 246, 0.6),
                     0 0 90px rgba(59, 130, 246, 0.4);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.5),
                     0 0 40px rgba(59, 130, 246, 0.3);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-decoration: none;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--bg-darker);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-dark);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

.hero-glow-animation {
    animation: heroGlow 2s ease-out forwards, gradientShift 5s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--bg-gradient);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    border-color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    background: var(--bg-card-hover);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-gradient);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 1rem 0;
}

.timeline {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

/* Pricing Details */
.pricing-details {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(91, 33, 182, 0.05);
    border-radius: 8px;
}

.build-fee, .hosting-fee {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.build-fee span, .hosting-fee span {
    font-weight: 700;
    color: var(--primary-color);
}

.hosting-fee span {
    color: var(--accent-color);
}

.pricing-card h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hosting-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hosting-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hosting-list li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 2px;
}

/* Hosting Features Section */
.hosting-features {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.hosting-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hosting-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.hosting-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.hosting-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hosting-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hosting-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hosting-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.hosting-cta {
    text-align: center;
    margin-top: 3rem;
}

.hosting-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Want a Site Like This Section */
.like-this-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.like-this-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.like-this-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.like-this-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.site-features h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-check {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.special-pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
    animation: glow 3s ease-in-out infinite;
}

.special-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--bg-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
}

.special-pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.special-price {
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.special-hosting {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.hosting-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.hosting-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.special-features {
    list-style: none;
    margin-bottom: 2rem;
}

.special-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.special-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.special-cta {
    width: 100%;
    text-align: center;
    background: var(--bg-gradient);
    padding: 1.5rem;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.special-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.7);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: 'View Project';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 0.5rem;
    font-size: 1rem;
    transition: bottom 0.3s ease;
}

.portfolio-item:hover .portfolio-image::after {
    bottom: 0;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.feature-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-transform: capitalize;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--text-dark);
}

/* Fix for select option dropdowns */
.form-group select option {
    background: var(--bg-card);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.submit-button {
    width: 100%;
    background: var(--bg-gradient);
    color: var(--white);
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:active::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.payment-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
}

.payment-notice {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.payment-details {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.hosting-note {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.hosting-notice {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.captcha-notice {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.captcha-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

.captcha-notice a:hover {
    text-decoration: underline;
}

/* Introductory Pricing Notice */
.intro-pricing-notice {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-top: 2px solid rgba(239, 68, 68, 0.2);
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 4rem;
}

.intro-pricing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-alert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: urgentPulse 2s ease-in-out infinite;
}

.intro-pricing-content h3 {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-pricing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.intro-pricing-text strong {
    color: #ef4444;
    font-weight: 700;
}

.value-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.value-item {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.value-item.highlight {
    border: 2px solid #10b981;
    background: rgba(16, 185, 129, 0.05);
    transform: scale(1.1);
}

.value-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.value-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.value-item.highlight .value-amount {
    color: #10b981;
}

.value-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Premium Addon Section */
.premium-addon-section {
    margin-top: 4rem;
    background: linear-gradient(135deg, #f3e7ff 0%, #e7f0ff 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-addon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.premium-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-badge {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.premium-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.premium-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.check-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Rush Available in Pricing Cards */
.rush-available {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    animation: rushBlink 3s ease-in-out infinite;
}

@keyframes rushBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Premium Addon Section */
.premium-addon-section {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-addon-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    pointer-events: none;
}

.premium-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.premium-addon-section .premium-features {
    color: var(--text-primary);
}

.premium-addon-section .premium-feature-item {
    color: var(--text-primary);
}

.premium-addon-section .premium-feature-item span:not(.check-icon) {
    color: var(--text-primary);
}

/* Portfolio Updates */
.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.portfolio-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.portfolio-icon {
    font-size: 3rem;
}

.portfolio-url {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.feature-tag {
    display: inline-block;
    background: #e5e7eb;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Rush Delivery Section */
.rush-delivery-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
    border: 2px solid #fbbf24;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rush-delivery-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.rush-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.rush-description {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.rush-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.rush-option {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid #fbbf24;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.rush-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.rush-option h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.rush-timing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.standard-time {
    color: var(--text-muted);
    text-decoration: line-through;
}

.arrow {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rush-time {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.125rem;
}

.rush-pricing {
    margin-bottom: 1rem;
}

.rush-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.rush-fee {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
}

.rush-availability {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
}

.rush-includes {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.rush-includes h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.rush-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.rush-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lightning-icon {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rush-cta {
    position: relative;
    z-index: 1;
}

.rush-how {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.urgent-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0a2e;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgent-cta:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    transform: scale(1.1);
}

.rush-disclaimer {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Revision Policy Section */
.revision-policy-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1200px;
    text-align: center;
}

.revision-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.revision-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.revision-rounds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.revision-round {
    background: rgba(91, 33, 182, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
}

.revision-round h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.additional-revisions {
    background: var(--bg-dark);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.additional-revisions h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.revision-rate {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.revision-rate strong {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.revision-note {
    color: var(--text-light);
}

.revision-details {
    text-align: left;
}

.revision-details h4 {
    text-align: center;
    margin-bottom: 2rem;
}

.revision-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.included-list h5,
.not-included-list h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.included-list ul,
.not-included-list ul {
    list-style: none;
    padding: 0;
}

.included-list li,
.not-included-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.included-list li {
    color: var(--success);
}

.not-included-list li {
    color: var(--text-muted);
}

/* Migration Section */
.migration-section {
    margin-top: 3rem;
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.migration-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.migration-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.migration-badge .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.migration-badge .value {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.migration-tagline {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.migration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.migration-features h4,
.migration-process h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.migration-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.step-number {
    background: var(--bg-gradient);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.migration-ideal {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.migration-section .cta-button {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.seo-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.seo-block {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.seo-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.comparison-section {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.comparison-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.location-seo {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.location-seo h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-subtitle,
.portfolio-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin: -1rem 0 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Prevent horizontal scroll on mobile */
html {
    overflow-x: hidden;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide gradient orbs on mobile */
    .gradient-orb {
        display: none;
    }
    
    /* Fix body overflow */
    body {
        overflow-x: hidden;
    }
    
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 60px);
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.8);
        border-left: 1px solid var(--border-color);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.mobile-menu-open {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: var(--bg-card);
        color: var(--primary-color);
    }
    
    /* Mobile quote button styling */
    .nav-quote-button {
        margin-top: 1rem;
        width: 90%;
        text-align: center;
        padding: 0.8rem 2rem !important;
    }
    
    /* Trust badges mobile */
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.75rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    /* Process timeline mobile */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }
    
    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
        margin-top: 1rem !important;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Intro Pricing Mobile */
    .intro-pricing-notice {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .intro-pricing-content h3 {
        font-size: 1.5rem;
    }
    
    .intro-pricing-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .value-comparison {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem 1.5rem;
    }
    
    .value-item.highlight {
        transform: scale(1.05);
    }
    
    .value-arrow {
        font-size: 1.5rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        justify-content: center;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .cta-button-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 300px;
        margin: 1rem auto 0;
        display: block;
    }
    
    /* Services Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Pricing Mobile */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-details {
        font-size: 0.95rem;
    }
    
    .build-fee span, .hosting-fee span {
        display: block;
        margin-top: 0.25rem;
    }
    
    /* Hosting Features Mobile */
    .hosting-features {
        padding: 60px 0;
    }
    
    .hosting-features h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .hosting-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hosting-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hosting-card {
        padding: 1.5rem;
    }
    
    .hosting-icon {
        font-size: 2.5rem;
    }
    
    /* Portfolio Mobile */
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    /* Contact Form Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .quote-form {
        padding: 0 1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Premium & Migration Sections Mobile */
    .premium-addon-section {
        padding: 3rem 1rem;
    }
    
    .premium-title {
        font-size: 1.75rem;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    .migration-section {
        padding: 3rem 1rem;
    }
    
    .migration-title {
        font-size: 1.75rem;
    }
    
    .migration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer Mobile */
    footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul {
        justify-content: center;
    }
    
    /* Typography adjustments */
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-icon {
        font-size: 1.25rem;
    }
    
    .services h2,
    .pricing h2,
    .hosting-features h2,
    .portfolio h2,
    .contact h2 {
        font-size: 1.75rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .build-fee,
    .hosting-fee {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .cta-button-secondary {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.stagger-children > * {
    opacity: 0;
}

.stagger-children.animate-fadeIn > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
    z-index: 9999;
}

/* Enhanced hover effects */
.service-card,
.pricing-card,
.portfolio-item,
.hosting-card {
    transition: all 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.portfolio-item:hover,
.hosting-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

/* 3D card effects */
.pricing-card,
.portfolio-item,
.hosting-card,
.special-pricing-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Magnetic button effect preparation */
.cta-button,
.submit-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover::before,
.submit-button:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Hero parallax effect support */
.hero .container {
    will-change: transform, opacity;
}

/* Navigation hover effects */
.nav-menu a {
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Form enhancements */
#description {
    transition: all 0.3s ease;
}

#description:focus {
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

/* Feature icon floating */
.feature-icon,
.hosting-icon {
    display: inline-block;
}

/* Smooth transitions for dynamically loaded content */
.pricing-grid > *,
.portfolio-grid > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-grid > *:nth-child(1) { animation-delay: 0.1s; }
.pricing-grid > *:nth-child(2) { animation-delay: 0.2s; }
.pricing-grid > *:nth-child(3) { animation-delay: 0.3s; }

.portfolio-grid > *:nth-child(1) { animation-delay: 0.1s; }
.portfolio-grid > *:nth-child(2) { animation-delay: 0.15s; }
.portfolio-grid > *:nth-child(3) { animation-delay: 0.2s; }
.portfolio-grid > *:nth-child(4) { animation-delay: 0.25s; }
.portfolio-grid > *:nth-child(5) { animation-delay: 0.3s; }

/* Gradient orb mouse tracking support */
.gradient-orb {
    will-change: transform;
    transition: none;
}

/* Advanced hover effects */
.service-card::before,
.pricing-card::before,
.portfolio-item::before,
.hosting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.service-card:hover::before,
.pricing-card:hover::before,
.portfolio-item:hover::before,
.hosting-card:hover::before {
    opacity: 0.1;
}

/* Glowing border effect on hover */
.pricing-card.featured {
    position: relative;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--bg-gradient);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

.pricing-card.featured:hover::after {
    opacity: 1;
}

/* Portfolio item hover overlay */
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-link::after {
    content: 'View Site →';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.portfolio-link:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Button glow effect */
.cta-button {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* Special CTA button effects */
.special-cta {
    position: relative;
    overflow: hidden;
}

.special-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.special-cta:hover::before {
    left: 100%;
}

/* Feature list hover effects */
.feature-list li,
.special-features li {
    transition: all 0.3s ease;
    cursor: default;
}

.feature-list li:hover,
.special-features li:hover {
    padding-left: 2rem;
    color: var(--primary-color);
}

/* Service card icon hover */
.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

/* Form field focus effects */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: scale(1.01);
}

/* Select dropdown styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2714%27%20height%3D%278%27%20viewBox%3D%270%200%2014%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%201l6%206%206-6%27%20stroke%3D%27%23a78bfa%27%20stroke-width%3D%272%27%20fill%3D%27none%27%20fill-rule%3D%27evenodd%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 3rem;
}

optgroup {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
}

option {
    font-weight: 400;
    padding: 0.5rem;
}

/* Navigation link hover with underline */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Showcase link special styling */
.showcase-link {
    position: relative;
    color: var(--primary-color) !important;
}

.showcase-link::before {
    content: '✨';
    position: absolute;
    left: -20px;
    animation: float 2s ease-in-out infinite;
}

/* Quote button in navbar */
.nav-quote-button {
    background: var(--bg-gradient);
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    color: white !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-quote-button::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;
}

.nav-quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white !important;
}

.nav-quote-button:hover::before {
    width: 150%;
    height: 150%;
}

.nav-quote-button::after {
    display: none !important;
}

/* Hosting icon pulse effect */
.hosting-icon {
    transition: all 0.3s ease;
}

.hosting-card:hover .hosting-icon {
    transform: scale(1.2);
    animation: pulse 1s ease-in-out infinite;
}

/* Footer link hover effects */
.footer a {
    position: relative;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

/* SEO block hover */
.seo-block {
    cursor: default;
    transition: all 0.3s ease;
}

.seo-block:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* Like this section special effects */
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    transition: all 0.3s ease;
}

.like-this-section:hover .gradient-text {
    filter: brightness(1.2);
}

/* Feature check animation */
.feature-check {
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
    transform: rotate(360deg) scale(1.2);
    color: var(--primary-color);
}

/* Trust Badges Section */
.trust-badges {
    padding: 40px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.badge-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-text strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.badge-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.trust-badge.featured {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.5);
}

.trust-badge.featured .badge-icon {
    animation: urgentPulse 1s ease-in-out infinite;
}

.availability-counter {
    color: #ef4444 !important;
    font-weight: 600;
}

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

/* Process Timeline Section */
.process-timeline-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.process-timeline-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
}

.process-timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.timeline-time {
    background: var(--bg-card);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.timeline-content {
    width: 45%;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.timeline-checklist {
    list-style: none;
    padding: 0;
}

.timeline-checklist li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

.process-guarantee {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
}

.faq-item h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.875rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--bg-gradient);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.testimonial-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-white);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) translateX(-5px);
}

.theme-switcher-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.theme-icon {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.theme-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.theme-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-option:hover {
    background: var(--bg-darker);
    border-color: var(--primary-color);
    transform: translateX(-3px);
}

.theme-option.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.theme-option.active .theme-name {
    color: white;
}

.theme-preview {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.theme-preview.dark-modern {
    background: linear-gradient(135deg, #0f0f0f 50%, #5b21b6 50%);
}

.theme-preview.light-professional {
    background: linear-gradient(135deg, #ffffff 50%, #3b82f6 50%);
}

.theme-preview.vibrant-gradient {
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
}

.theme-preview.minimalist-clean {
    background: linear-gradient(135deg, #f8f9fa 50%, #212529 50%);
}

.theme-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Theme Variations */
/* Light Professional Theme */
body.light-professional {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-darker: #e9ecef;
    --bg-card: #ffffff;
    --text-primary: #212529;
    --text-dark: #212529;
    --text-light: #6c757d;
    --text-muted: #adb5bd;
    --primary-color: #3b82f6;
    --secondary-color: #60a5fa;
    --accent-color: #2563eb;
    --border-color: #dee2e6;
    --bg-gradient: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

body.light-professional .gradient-orb {
    opacity: 0.03;
}

body.light-professional .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
}

body.light-professional .hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

/* Vibrant Gradient Theme */
body.vibrant-gradient {
    --primary-color: #8338ec;
    --secondary-color: #ff006e;
    --accent-color: #3a86ff;
    --bg-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
}

body.vibrant-gradient .gradient-orb {
    opacity: 0.15;
}

body.vibrant-gradient .gradient-orb.orb-1 {
    background: radial-gradient(circle at 30% 30%, #ff006e, transparent 70%);
}

body.vibrant-gradient .gradient-orb.orb-2 {
    background: radial-gradient(circle at 30% 30%, #8338ec, transparent 70%);
}

body.vibrant-gradient .gradient-orb.orb-3 {
    background: radial-gradient(circle at 30% 30%, #3a86ff, transparent 70%);
}

body.vibrant-gradient .cta-button {
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
}

body.vibrant-gradient .nav-quote-button {
    background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
}

/* Minimalist Clean Theme */
body.minimalist-clean {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-darker: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #8a8a8a;
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #000000;
    --border-color: #e0e0e0;
    --bg-gradient: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body.minimalist-clean .gradient-orb {
    display: none;
}

body.minimalist-clean .navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body.minimalist-clean .hero {
    background: #fafafa;
}

body.minimalist-clean .cta-button {
    background: #1a1a1a;
    box-shadow: none;
    border-radius: 0;
}

body.minimalist-clean .pricing-card {
    box-shadow: 0 0 0 1px var(--border-color);
    border-radius: 0;
}

body.minimalist-clean .service-card,
body.minimalist-clean .portfolio-item {
    border-radius: 0;
    box-shadow: 0 0 0 1px var(--border-color);
}

/* Mobile responsive for theme switcher */
@media (max-width: 768px) {
    .theme-switcher {
        right: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
        padding: 0.75rem;
    }
    
    .theme-switcher:hover {
        transform: translateX(-3px);
    }
    
    .theme-label {
        font-size: 0.75rem;
    }
    
    .theme-preview {
        width: 25px;
        height: 25px;
    }
    
    .theme-name {
        font-size: 0.75rem;
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    /* Like this section */
    .like-this-section {
        padding: 40px 0;
    }
    
    .like-this-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gradient-text {
        font-size: 1.5rem;
    }
    
    .like-this-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .site-features {
        padding: 0 1rem;
    }
    
    .feature-list {
        font-size: 0.875rem;
    }
    
    .special-pricing-card {
        margin: 0 1rem;
    }
    
    .special-price .price-main {
        font-size: 2rem;
    }
    
    /* SEO section */
    .seo-content {
        padding: 40px 0;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .seo-block {
        padding: 1.5rem;
    }
    
    .seo-block h3 {
        font-size: 1.1rem;
    }
    
    .comparison-section,
    .location-seo {
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .comparison-section h3 {
        font-size: 1.25rem;
    }
    
    /* Contact form */
    .quote-form {
        padding: 0 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Premium addon section */
    .premium-addon-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .premium-title {
        font-size: 1.25rem;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    /* Rush Delivery Mobile */
    .rush-delivery-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .rush-title {
        font-size: 1.75rem;
    }
    
    .rush-description {
        font-size: 1rem;
    }
    
    .rush-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rush-option {
        padding: 1.5rem;
    }
    
    .rush-price {
        font-size: 1.5rem;
    }
    
    .rush-features {
        grid-template-columns: 1fr;
    }
    
    /* Revision Policy Mobile */
    .revision-policy-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .revision-title {
        font-size: 1.5rem;
    }
    
    .revision-rounds {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .revision-lists {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Migration section */
    .migration-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .migration-title {
        font-size: 1.25rem;
    }
    
    .migration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Fix navbar on mobile */
    .navbar {
        padding: 0;
    }
    
    .nav-brand {
        font-size: 1.25rem;
    }
    
    /* Fix showcase link */
    .showcase-link::before {
        display: none;
    }
}