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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    color: #f5f5f5;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(67, 56, 202, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #d97706, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #f59e0b;
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    color: #1a1a1a;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

/* Typewriter-Grid Combo Hero */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f5f5f5;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Interactive Grid Pattern */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 30s linear infinite;
    opacity: 0.8;
    pointer-events: none;
}

/* Light-up grid cells */
.grid-highlight {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.grid-highlight.active {
    opacity: 1;
    animation: gridPulse 0.8s ease-out;
}

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

/* Code Buzzwords Background */
.code-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.code-element {
    position: absolute;
    color: rgba(245, 158, 11, 0.8);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    user-select: none;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2s forwards;
}

.code-element.float-animation {
    animation: subtleFloat 6s ease-in-out infinite;
}

.code-element.breathe-animation {
    animation: subtleBreathe 4s ease-in-out infinite;
}

.code-element.fade-out {
    animation: fadeOutCode 1s ease-out forwards !important;
}

/* Different sizes and positions for code elements */
.code-element.large {
    font-size: 28px;
    opacity: 1;
    color: rgba(245, 158, 11, 0.9);
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.7);
}

.code-element.medium {
    font-size: 20px;
    opacity: 1;
    color: rgba(245, 158, 11, 0.8);
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.code-element.small {
    font-size: 16px;
    opacity: 1;
    color: rgba(245, 158, 11, 0.7);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 .static-text {
    background: linear-gradient(45deg, #f5f5f5, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .typewriter-text {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.3));
    animation: constantGlow 3s ease-in-out infinite alternate;
}

.hero h1 .typewriter-text::after {
    content: '|';
    background: linear-gradient(45deg, #d97706, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.3));
    animation: blink 1s infinite;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 119, 6, 0.4);
}

.btn-primary::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: all 0.3s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: #f5f5f5;
    border: 2px solid #f59e0b;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.btn-secondary:hover {
    background: #f59e0b;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.3);
}

/* Animations */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

@keyframes constantGlow {
    0% {
        text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
        filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.3));
    }
    100% {
        text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
        filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.4));
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

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

@keyframes fadeOutCode {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        filter: blur(1px);
    }
}

/* Subtle mouse interaction glow */
.hero-content:hover .typewriter-text {
    text-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
}

/* Easter Egg Styling */
.pip-boy-easter-egg {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(245, 158, 11, 0.7);
    font-size: 12px;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: auto;
    user-select: none;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    z-index: 5;
    cursor: move;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out forwards;
}

.vault-tech {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(245, 158, 11, 0.6);
    font-size: 10px;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: auto;
    user-select: none;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
    z-index: 5;
    cursor: move;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out forwards;
}

.pip-boy-easter-egg.glitch-animation {
    animation: fadeInUp 1s ease-out forwards, pipBoyGlitch 8s ease-in-out 1s infinite;
}

.vault-tech.flicker-animation {
    animation: fadeInUp 1s ease-out forwards, vaultTechFlicker 6s ease-in-out 1s infinite;
}

.pip-boy-easter-egg:hover,
.vault-tech:hover {
    color: rgba(245, 158, 11, 0.9);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    transform: scale(1.1);
}

.pip-boy-easter-egg.dragging,
.vault-tech.dragging {
    color: rgba(245, 158, 11, 1);
    text-shadow: 0 0 25px rgba(245, 158, 11, 1);
    transform: scale(1.2);
    z-index: 1000;
    animation: none;
}

.pip-boy-easter-egg.fade-out,
.vault-tech.fade-out {
    animation: fadeOutEasterEgg 1.5s ease-out forwards !important;
}

@keyframes pipBoyGlitch {
    0%, 90%, 100% { 
        opacity: 0; 
        transform: translateY(0px);
    }
    5%, 85% { 
        opacity: 0.8; 
        transform: translateY(-5px);
    }
    10%, 80% { 
        opacity: 0.9; 
        transform: translateY(0px);
    }
    15%, 75% { 
        opacity: 0.7; 
        transform: translateY(-3px);
    }
    20%, 70% { 
        opacity: 0.9; 
        transform: translateY(0px);
    }
}

@keyframes vaultTechFlicker {
    0%, 95%, 100% { 
        opacity: 0; 
    }
    5%, 90% { 
        opacity: 0.7; 
    }
    10%, 85% { 
        opacity: 0.9; 
    }
    15%, 80% { 
        opacity: 0.6; 
    }
}

@keyframes fadeOutEasterEgg {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        filter: blur(1px);
    }
}

/* Page Hero (smaller version for internal pages) */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f5f5f5;
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f5f5f5, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.light {
    background: #f5f5f5;
}

.content-section.dark {
    background: #1a1a1a;
    color: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
}

.content-section.dark .section-title {
    color: #f5f5f5;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #525252;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-section.dark .section-subtitle {
    color: #d1d1d1;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #d97706, #f59e0b);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #d97706, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: bold;
}

.service-description {
    color: #525252;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-button {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-section.dark .content-card {
    background: #2d2d2d;
    color: #f5f5f5;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-section.dark .content-card h3 {
    color: #f5f5f5;
}

.content-card p {
    color: #525252;
    line-height: 1.6;
}

.content-section.dark .content-card p {
    color: #d1d1d1;
}

/* Value Icons */
.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.content-card:hover .value-icon {
    transform: scale(1.1);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f59e0b;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Contact Form - Redesigned Layout */
.contact-form-section {
    margin-bottom: 4rem;
}

/* Custom Contact Form Styles */
.custom-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 3rem;
}

.contact-form {
    width: 100%;
    display: block;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Form Labels */
.form-label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d97706;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    transform: translateY(-1px);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
}

/* Form Help Text */
.form-help {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Submit Button */
.form-submit-btn {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, #b45309, #d97706);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn.loading {
    pointer-events: none;
}

.form-submit-btn .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Form Footer */
.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.form-privacy {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 8px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .custom-form-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-help {
        font-size: 0.8rem;
    }
}

/* Contact Alternatives Section */
.contact-alternatives {
    margin-top: 3rem;
    text-align: center;
}

.alternatives-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
}

.alternatives-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #d97706, #f59e0b);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-method-card h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.contact-method-card p {
    color: #525252;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-method-button {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    color: #1a1a1a;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-method-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.response-time {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.response-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.response-list li {
    padding: 0.4rem 0;
    color: #525252;
    font-size: 0.9rem;
}

/* Legacy Contact Form Styles (for backward compatibility) */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.google-form-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.google-form-container iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d97706;
}

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

/* Contact Methods */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 26, 26, 0.4);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #f5f5f5;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #f5f5f5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Fix header navigation spacing on mobile */
    nav {
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-right: 1rem;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.mobile-open {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(245, 158, 11, 0.1);
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 2.5rem;
        min-height: 150px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 250px;
        text-align: center;
        margin: 0.5rem 0;
    }

    /* Reduce code element density and size for mobile */
    .code-element.large {
        font-size: 18px;
    }

    .code-element.medium {
        font-size: 14px;
    }

    .code-element.small {
        font-size: 11px;
    }

    /* Make easter eggs more mobile-friendly */
    .pip-boy-easter-egg {
        font-size: 10px;
        max-width: 200px;
        word-wrap: break-word;
    }

    .vault-tech {
        font-size: 9px;
        max-width: 180px;
        word-wrap: break-word;
    }

    /* Reduce grid pattern intensity on mobile */
    .pattern-overlay {
        opacity: 0.3;
        background-size: 30px 30px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .custom-form-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method-card {
        padding: 2rem 1.5rem;
    }

    .alternatives-title {
        font-size: 1.5rem;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    /* Improve header spacing on very small screens */
    nav {
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .mobile-menu-toggle {
        margin-right: 0.5rem;
        width: 28px;
        height: 28px;
    }
    
    .cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo div:first-child {
        font-size: 1.3rem !important;
    }
    
    .logo div:last-child {
        font-size: 0.8rem !important;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Portfolio Mobile Responsiveness */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .portfolio-item {
        margin: 0 1rem;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .portfolio-image {
        height: 150px;
    }
    
    .portfolio-placeholder {
        font-size: 3rem;
    }
    
    .portfolio-title {
        font-size: 1.2rem;
    }
    
    .portfolio-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .portfolio-item {
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .portfolio-content {
        padding: 1.25rem;
    }
    
    .portfolio-image {
        height: 120px;
    }
    
    .portfolio-placeholder {
        font-size: 2.5rem;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
    }
    
    .portfolio-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.portfolio-category {
    color: #d97706;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-description {
    color: #525252;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.result-item {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #e5e7eb;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #525252;
    line-height: 1.7;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #d97706;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f5f5f5;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.breadcrumbs a {
    color: #525252;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #d97706;
}

.breadcrumbs .current {
    color: #d97706;
    font-weight: bold;
}