/* ==========================================================================
   FONT DEFINITIONS
   ========================================================================== */

@font-face {
    font-family: 'Harietta';
    src: url('../fonts/hv-harietta-regular-webfont.woff2') format('woff2'),
         url('../fonts/hv-harietta-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Harietta';
    src: url('../fonts/hv-harietta-bold-webfont.woff2') format('woff2'),
         url('../fonts/hv-harietta-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ==========================================================================
   RESET AND BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent link color flash */
a {
    color: inherit;
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Harietta', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER STYLES - SEPARATE LOGO AND CENTERED BRAND
   ========================================================================== */

.header {
    background: rgba(38, 38, 38, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(228, 199, 136, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 108px;
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 100%;
    margin: 0;
    padding: 15px 40px;
    height: 100%;
    position: relative;
}

/* Logo Section - Absolutely positioned left, completely separate */
.header-logo {
    position: absolute;
    top: 5px;
    left: -95px;
    z-index: 10;
}

.logo-img {
    height: 32px; /* Match the height of the F in Forged (32px font size) */
    width: auto; /* Maintain aspect ratio */
    filter: brightness(1.1);
}

/* Start a Project Button - Absolutely positioned right, standalone */
.header-cta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    z-index: 10;
}

.cta-btn-standalone {
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a !important;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: auto;
}

.cta-btn-standalone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.45);
    color: #1a1a1a !important;
    background: linear-gradient(135deg, #D4B976 0%, #f0d799 100%);
}

.header-center-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    width: 100%;
    gap: 20px;
}

.header-brand-link {
    text-decoration: none;
    color: inherit;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brand-text {
    font-family: 'Harietta', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #E4C788;
    text-decoration: none;
    white-space: nowrap;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img-center {
    height: 50px;
    width: auto;
}

.header-brand:hover {
    transform: translateY(-2px);
}


/* Radio grid styling for project intake form */
.radio-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    background: rgba(30, 30, 30, 0.5);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(228, 199, 136, 0.2);
    transition: all 0.2s ease;
}

.radio-label:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(228, 199, 136, 0.4);
}

.radio-label input[type="radio"] {
    margin: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transform: scale(0.9);
}

.radio-option {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-option strong {
    color: #E4C788;
    font-size: 14px;
    font-weight: 600;
}

.radio-option small {
    color: #cccccc;
    font-size: 12px;
    opacity: 0.9;
}

/* Old brand styles - keeping for fallback */
.brand-name {
    font-size: 70px;
    font-weight: 700;
    color: #E4C788;
    line-height: 1;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 36px;
    font-weight: 400;
    color: #E4C788;
    opacity: 0.8;
    line-height: 1;
}

/* Navigation Section */
.header-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: calc(100% - 400px);
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 120px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px; /* Increased nav link size */
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #E4C788;
}

.header-contact {
    display: none; /* Hide on desktop, show on mobile if needed */
}

.header-contact .contact-btn {
    background: transparent;
    border: 2px solid #E4C788;
    color: #E4C788;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
}

.header-contact .contact-btn:hover {
    background: #E4C788;
    color: #1a1a1a;
}

/* Mobile Menu Button and Overlay - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.mobile-menu-overlay {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #E4C788;
    margin: 4px 0;
    transition: 0.3s;
}

/* ==========================================================================
   MAIN CONTENT - ADJUSTED FOR BIGGER HEADER
   ========================================================================== */

.main-content {
    margin-top: 108px; /* Adjusted for 10% smaller header */
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

/* Hero Section */
.hero {
    min-height: 60vh; /* Keep current height */
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    isolation: isolate;
    border-bottom: 1px solid rgba(228, 199, 136, 0.3);
}

/* Hero Background Layers */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -10;
    background-image: 
        radial-gradient(60% 50% at 50% 45%, rgba(212,165,116,0.18) 0%, rgba(212,165,116,0.06) 35%, rgba(28,28,28,0.0) 65%),
        conic-gradient(from 200deg at 50% 40%, #1a1a1a 0deg, #1f1f1f 90deg, #0f0f0f 180deg, #1a1a1a 270deg, #1a1a1a 360deg);
    background-size: 100% 100%, 100% 100%;
    background-position: center;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -10;
    background-image:
        radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.65) 100%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%);
    background-size: 100% 100%, 48px 48px, 48px 48px;
    background-position: center;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -10;
    opacity: 0.2;
    background-image: radial-gradient(#ffffff0d 1px, transparent 1px);
    background-size: 2px 2px;
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 60rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid #2d2d2d;
    background: linear-gradient(180deg, rgba(228, 199, 136, 0.05), rgba(28,28,28,0.35));
    box-shadow: 0 0 0 1px var(--border-primary) inset, 0 8px 24px rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    font-family: 'Harietta', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #E4C788;
}

.hero-title {
    font-family: 'Harietta', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #E4C788;
    margin: 0;
    text-shadow: 0 0 20px rgba(212,165,116,0.2);
    animation: heroGlow 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes heroGlow {
    0%, 100% { text-shadow: 0 0 12px rgba(212,165,116,0.12); }
    50% { text-shadow: 0 0 24px rgba(212,165,116,0.28); }
}

.hero-description {
    font-family: 'Harietta', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #cccccc;
    max-width: 600px;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-family: 'Harietta', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: linear-gradient(180deg, #f0d799, #E4C788);
    color: #333;
    box-shadow: 0 10px 30px rgba(228,199,136,0.25);
    border: 1px solid #D4B976;
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(228,199,136,0.35);
}

.hero-btn.secondary {
    border: 1px solid #2d2d2d;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(26,26,26,0.0));
    color: #E4C788;
}

.hero-btn.secondary:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(26,26,26,0.05));
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.play-icon {
    margin-right: -2px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Particles Animation */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #E4C788;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 3.5s infinite ease-out;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.6);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-180px) scale(1.2);
    }
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process-section {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228, 199, 136, 0.3), transparent);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: #E4C788;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -1px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 199, 136, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-box:hover::before {
    opacity: 1;
}

.process-box:hover {
    transform: translateY(-10px);
    border-color: rgba(228, 199, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E4C788;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.process-content h3 {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.process-content p {
    color: #cccccc;
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.process-intro {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

.process-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.process-details li {
    color: #cccccc;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.process-details li:before {
    content: "→";
    color: #E4C788;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.footer {
    background: rgba(45, 45, 45, 0.85); /* Same as header */
    border-top: 1px solid rgba(228, 199, 136, 0.2);
    padding: 25px 0 10px; /* Shorter footer - reduced from 60px 0 30px */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 80px; 
    margin-bottom: 10px; 
    justify-items: center;
    max-width: 800px;
    margin: 0 auto 10px;
}

.footer-section h3,
.footer-section h4 {
    color: #E4C788;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-left: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 5px;
}

.footer-description {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Fixed contact item layout */
.contact-item {
    margin-bottom: 10px;
    color: #cccccc;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-label {
    font-weight: 600;
    color: #f5f5f5;
    margin-right: 8px;
    white-space: nowrap;
}

.contact-link {
    color: #E4C788;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E4C788;
}

/* Footer bottom section */
.footer-divider {
    height: 1px;
    background: rgba(228, 199, 136, 0.2);
    margin-bottom: 15px; /* Reduced from 30px */
}

/* Legal links under the gold line */
.footer-legal {
    text-align: center;
    margin-bottom: 5px;
}

.footer-legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #E4C788;
}

.footer-separator {
    color: #cccccc;
    margin: 0 15px;
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    /* Extend mobile hero heights */
    .page-header {
        padding: 140px 0 120px;
        min-height: 450px !important;
    }
    
    .hero {
        min-height: 450px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer {
        padding: 30px 0 15px; /* Even shorter on mobile */
    }
}

/* ==========================================================================
   COMING SOON PAGES
   ========================================================================== */

.coming-soon {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #E4C788;
    margin-bottom: 20px;
    font-weight: 700;
}

.coming-soon p {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.page-header {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    min-height: 450px !important;
    padding: 150px 0 80px;
    text-align: center;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(228, 199, 136, 0.3);
}

/* Apply hero effects to page headers */
.page-header .hero-background {
    position: absolute;
    inset: 0;
    z-index: -10;
    background-image: 
        radial-gradient(60% 50% at 50% 45%, rgba(212,165,116,0.18) 0%, rgba(212,165,116,0.06) 35%, rgba(28,28,28,0.0) 65%),
        conic-gradient(from 200deg at 50% 40%, #1a1a1a 0deg, #1f1f1f 90deg, #0f0f0f 180deg, #1a1a1a 270deg, #1a1a1a 360deg);
    background-size: 100% 100%, 100% 100%;
    background-position: center;
}

.page-header .hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -10;
    background-image:
        radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.65) 100%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%);
    background-size: 100% 100%, 48px 48px, 48px 48px;
    background-position: center;
}

.page-header .hero-noise {
    position: absolute;
    inset: 0;
    z-index: -10;
    opacity: 0.2;
    background-image: radial-gradient(#ffffff0d 1px, transparent 1px);
    background-size: 2px 2px;
}

.page-header .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

/* Smaller headers for legal pages */
.legal-page .page-header {
    padding: 100px 0 40px;
}

/* Legal content styling */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.8);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
}

.legal-text h2 {
    color: #E4C788;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(228, 199, 136, 0.3);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-text li::marker {
    color: #E4C788;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #E4C788;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-form-container {
    max-width: 900px;
    width: 100%;
    background: rgba(45, 45, 45, 0.8);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
}

.contact-form-container h2 {
    color: #E4C788;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-item h3 {
    color: #E4C788;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.6;
    display: inline-block;
}

.contact-link {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #E4C788;
}

.contact-form {
    background: rgba(45, 45, 45, 0.5);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #E4C788;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #f5f5f5;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E4C788;
    box-shadow: 0 0 0 2px rgba(228, 199, 136, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #D4B976 0%, #C4A966 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 199, 136, 0.3);
}

.form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-messages.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-messages.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-cta {
    background: rgba(228, 199, 136, 0.1);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(228, 199, 136, 0.3);
}

.cta-content h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #E4C788;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(58, 58, 58, 0.3);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-intro {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    padding: 80px 0;
    border-bottom: 1px solid rgba(228, 199, 136, 0.2);
}

.about-content h2 {
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 25px auto;
    text-align: center;
}

.developer-section {
    background: rgba(45, 45, 45, 0.5);
    padding: 80px 0;
}

.developer-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.developer-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: rgba(30, 30, 30, 0.8);
    border: 2px dashed rgba(228, 199, 136, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #E4C788;
    text-align: center;
}

.placeholder-icon {
    margin-bottom: 15px;
}

.image-placeholder p {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

.developer-bio h2 {
    color: #E4C788;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.developer-bio h3 {
    color: #f5f5f5;
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.developer-title {
    color: #E4C788;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px !important;
}

.developer-bio p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.developer-skills {
    margin-top: 35px;
}

.developer-skills h4 {
    color: #E4C788;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
    padding: 0;
}

.skills-list li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.values-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.values-section h2 {
    color: #E4C788;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    background: rgba(45, 45, 45, 0.5);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
    text-align: center;
}

.value-icon {
    color: #E4C788;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    color: #E4C788;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.about-cta {
    background: rgba(228, 199, 136, 0.1);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(228, 199, 136, 0.3);
}

.about-cta .cta-content h2 {
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta .cta-content p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

.services-overview {
    background: #1a1a1a;
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-disclaimer {
    background: rgba(228, 199, 136, 0.05);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.tier-card {
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tier-card.featured {
    border: 2px solid #E4C788;
    position: relative;
}

.tier-card.premium {
    border: 2px solid #9b59b6;
    position: relative;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(60, 40, 70, 0.5) 100%);
}

.tier-card.premium .tier-header {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.tier-card.premium .tier-badge {
    background: #2c3e50;
    color: white;
}

.tier-header {
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a;
    padding: 30px;
    text-align: center;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tier-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Break "Websites" to second line on desktop only */
.tier-word-break {
    display: block;
}

@media (max-width: 768px) {
    .tier-word-break {
        display: inline;
    }
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.tier-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    background: #1a1a1a;
    color: #E4C788;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-content {
    padding: 40px;
}

.tier-content > p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tier-content h3 {
    color: #E4C788;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tier-features li {
    color: #cccccc;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.tier-features li:before {
    content: "✓";
    color: #E4C788;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tier-timeline {
    background: rgba(228, 199, 136, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: #E4C788;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.tier-note {
    background: rgba(155, 89, 182, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: #cccccc;
    font-size: 0.95rem;
    margin-top: 15px;
    border-left: 3px solid #9b59b6;
}

.tier-card.premium .tier-timeline {
    background: rgba(155, 89, 182, 0.1);
    color: #b19cd9;
}

.additional-services {
    background: rgba(45, 45, 45, 0.3);
    padding: 80px 0;
}

.additional-services h2 {
    color: #E4C788;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
    background: rgba(45, 45, 45, 0.5);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    border-color: #E4C788;
}

.service-icon {
    color: #E4C788;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #E4C788;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item > p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    color: #cccccc;
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.service-item li:before {
    content: "•";
    color: #E4C788;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.process-section h2 {
    color: #E4C788;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-intro {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process-step {
    background: rgba(45, 45, 45, 0.5);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #E4C788;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0 15px 0;
}

.process-step > p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    list-style: none;
    padding: 0;
}

.step-details li {
    color: #cccccc;
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.step-details li:before {
    content: "→";
    color: #E4C788;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-cta {
    background: rgba(228, 199, 136, 0.1);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(228, 199, 136, 0.3);
}

.services-cta .cta-content h2 {
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta .cta-content p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.primary {
    background: #1a1a1a;
    color: #E4C788;
}

.cta-btn.secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-btn.secondary:hover {
    background: #1a1a1a;
    color: #E4C788;
}

/* ==========================================================================
   INTAKE FORM STYLES (START A PROJECT PAGE)
   ========================================================================== */

.intake-form-section {
    background: #1a1a1a;
    padding: 60px 0 80px;
}

.intake-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-group-section {
    position: relative;
    margin: 2rem 0;
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.section-legend {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.section-content {
    padding-top: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    color: #E4C788;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f5f5f5;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px;
}

.form-field input[type="file"] {
    background: rgba(30, 30, 30, 0.9);
    color: #cccccc;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #E4C788;
    box-shadow: 0 0 0 3px rgba(228, 199, 136, 0.2);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    min-height: auto;
    margin: 0;
    accent-color: #E4C788;
}

.consent-field {
    background: rgba(228, 199, 136, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
}

.consent-label {
    color: #f5f5f5;
    font-size: 1rem;
    line-height: 1.6;
}

.consent-note {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 10px 0 0 0;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px 0;
    flex-wrap: wrap;
}

.submit-btn.primary {
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 199, 136, 0.3);
}

.submit-btn.primary:hover {
    background: linear-gradient(135deg, #D4B976 0%, #C4A966 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 199, 136, 0.4);
}

.submit-btn.secondary {
    background: transparent;
    color: #E4C788;
    border: 2px solid #E4C788;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn.secondary:hover {
    background: #E4C788;
    color: #1a1a1a;
}

#intake-form-messages {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    text-align: center;
}

#intake-form-messages.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

#intake-form-messages.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET AND MOBILE
   ========================================================================== */

/* Tablet and Small Desktop */
@media (max-width: 768px) {
    .header {
        height: 180px; /* Smaller but still prominent on tablet */
    }
    
    .main-content {
        margin-top: 180px;
    }
    
    .header-container {
        padding: 25px 20px;
    }
    
    .header-logo {
        top: 25px;
        left: 20px;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .header-cta {
        top: 30px;
        right: 20px;
    }
    
    .cta-btn-standalone {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .header-center-content {
        gap: 20px;
    }
    
    .brand-word {
        font-size: 1.7rem;
    }
    
    .logo-img-center {
        height: 34px;
    }
    
    .logo-img {
        height: 28px; /* Match responsive text size */
    }
    
    .brand-name {
        font-size: 42px;
    }
    
    .brand-tagline {
        font-size: 26px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    
    /* Keep mobile menu hidden until activated */
    .mobile-menu-overlay {
        display: none !important;
        opacity: 0;
        visibility: hidden;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
    
    .header-contact {
        display: block; /* Show contact button on mobile */
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-box {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .header {
        height: 160px;
    }
    
    .main-content {
        margin-top: 160px;
    }
    
    .header-container {
        padding: 20px 15px;
    }
    
    .header-logo {
        top: 20px;
        left: 15px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .header-cta {
        display: none; /* Hide CTA on very small screens to avoid crowding */
    }
    
    .header-center-content {
        gap: 15px;
    }
    
    .brand-word {
        font-size: 1.5rem;
    }
    
    .logo-img-center {
        height: 30px;
    }
    
    .logo-img {
        height: 24px; /* Match responsive text size */
    }
    
    .brand-name {
        font-size: 36px;
    }
    
    .brand-tagline {
        font-size: 22px;
    }
    
    .nav-list {
        gap: 20px;
        flex-direction: column;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .mobile-menu-btn {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Contact page mobile styles */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .page-header {
        padding: 140px 0 120px;
        min-height: 450px !important;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Full width Email Us button on mobile */
    .contact-cta .cta-btn {
        display: block;
        width: calc(100% + 30px);
        margin: 0 -15px;
        text-align: center;
        border-radius: 0;
        padding: 15px 20px;
    }
    
    /* About page mobile styles */
    .developer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    .about-intro,
    .developer-section,
    .values-section {
        padding: 40px 0;
    }
    
    .about-cta {
        padding: 40px 0;
    }
    
    /* Services page mobile styles */
    .service-tiers {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-overview,
    .additional-services,
    .process-section {
        padding: 40px 0;
    }
    
    .services-cta {
        padding: 40px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-content,
    .service-item,
    .process-step {
        padding: 25px;
    }
    
    /* Intake form mobile styles */
    .intake-form-section {
        padding: 40px 0 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group-section {
        padding: 25px 20px;
        margin: 1.5rem 0;
    }
    
    .section-legend {
        left: 20px;
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .submit-btn.primary,
    .submit-btn.secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   PORTFOLIO PAGE STYLES
   ========================================================================== */

.portfolio-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-disclaimer {
    background: rgba(228, 199, 136, 0.05);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-category {
    margin-bottom: 80px;
}

.category-title {
    color: #E4C788;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.category-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-subcategory {
    margin-bottom: 60px;
}

.subcategory-title {
    color: #E4C788;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid rgba(228, 199, 136, 0.3);
    padding-bottom: 15px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.portfolio-item {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(228, 199, 136, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(228, 199, 136, 0.5);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #E4C788;
    border-bottom: 1px solid rgba(228, 199, 136, 0.2);
}

.image-placeholder span {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-placeholder small {
    font-size: 14px;
    color: #cccccc;
    opacity: 0.8;
}

.portfolio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    color: #E4C788;
    font-size: 22px;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: auto;
}

.portfolio-link {
    background: #E4C788;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.portfolio-link:hover {
    background: #f0d799;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 199, 136, 0.3);
}

/* Coming Soon overlay for portfolio items */
.portfolio-item.coming-soon {
    position: relative;
    opacity: 0.7;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}

.coming-soon-overlay span {
    color: #E4C788;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.work-in-progress-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(228, 199, 136, 0.95);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 10;
    pointer-events: none;
}

.work-in-progress-overlay span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-link.disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.portfolio-cta {
    background: rgba(228, 199, 136, 0.1);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(228, 199, 136, 0.3);
}

.cta-content h2 {
    color: #E4C788;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-btn.primary {
    background: #E4C788;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn.primary:hover {
    background: #f0d799;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 199, 136, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #E4C788;
    padding: 16px 32px;
    border: 2px solid #E4C788;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn.secondary:hover {
    background: #E4C788;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .subcategory-title {
        font-size: 20px;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .portfolio-content h3 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn.primary,
    .cta-btn.secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .disclaimer-notice h2 {
        font-size: 24px;
    }
    
    .disclaimer-notice p {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE FIXES
   ========================================================================== */

/* Keep tiers side by side until very small screens */
@media (min-width: 769px) {
    .service-tiers {
        grid-template-columns: repeat(3, 1fr);
        overflow-x: auto;
    }
    
    .tier-card {
        min-width: 300px;
    }
}

/* Very narrow desktop - shrink header inward like content */
@media (max-width: 1200px) and (min-width: 993px) {
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 20px;
    }
}

/* Fix header stacking - create horizontal compact layout */
@media (max-width: 1050px) and (min-width: 993px) {
    .header {
        height: 80px;
    }
    
    .header-container {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 20px !important;
        gap: 0 !important;
    }
    
    .header-brand-link {
        position: static !important;
        transform: none !important;
        flex-shrink: 0;
    }
    
    .header-brand {
        gap: 8px;
    }
    
    .brand-text {
        font-size: 1.4rem !important;
    }
    
    .logo-img-center {
        height: 35px !important;
    }
    
    .header-buttons {
        position: static !important;
        transform: none !important;
        display: flex !important;
        gap: 8px;
        flex: 1;
        justify-content: center;
        margin: 0 20px;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .header-buttons .nav-list {
        gap: 8px;
    }
    
    .header-buttons a, .nav-link {
        padding: 8px 12px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
    
    .header-cta {
        position: static !important;
        transform: none !important;
        flex-shrink: 0;
        right: auto !important;
        top: auto !important;
    }
    
    .cta-btn-standalone {
        padding: 8px 16px !important;
        font-size: 12px !important;
        height: auto !important;
    }
    
    .main-content {
        margin-top: 80px;
    }
}

/* Desktop split screen - horizontal single line */
@media (max-width: 1400px) and (min-width: 993px) {
    .header {
        height: 100px;
        overflow: visible;
    }
    
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 100%;
        position: relative;
    }
    
    .header-logo {
        position: static;
        transform: none;
        flex-shrink: 0;
        z-index: 15;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-buttons {
        position: static;
        transform: none;
        display: flex;
        gap: 6px;
        justify-content: center;
        flex: 1;
        margin: 0 15px;
        z-index: 15;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .header-buttons a {
        padding: 6px 10px;
        font-size: 11px;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    
    .header-cta {
        position: static;
        transform: none;
        flex-shrink: 0;
        z-index: 15;
    }
    
    .cta-btn-standalone {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .main-content {
        margin-top: 100px;
    }
}

/* Smaller screens - adjust tier card content */
@media (max-width: 1100px) {
    .tier-card {
        font-size: 14px;
    }
    
    .tier-features li {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .tier-content {
        padding: 25px 20px;
    }
    
    .tier-header h2 {
        font-size: 1.5rem;
    }
}

/* Mobile/Tablet - Hamburger Menu */
@media (max-width: 992px) {
    .header {
        height: 80px;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        height: 100%;
        position: relative;
    }
    
    .header-brand-link {
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .header-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .brand-text {
        font-size: 1.5rem !important;
    }
    
    .logo-img-center {
        height: 40px !important;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-logo::after {
        content: "Forged Digital";
        color: #E4C788;
        font-size: 18px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .header-buttons {
        display: none;
    }
    
    /* Hide start project button and secondary hero button on mobile */
    .header-cta {
        display: none;
    }
    
    .hero-btn.secondary {
        display: none;
    }
    
    /* Position hero button visible on mobile */
    .hero-buttons {
        position: absolute;
        bottom: -3rem;
        right: 50%;
        transform: translateX(50%);
        margin-top: 0;
        justify-content: center;
    }
    
    .hero-btn.primary {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .hamburger-menu {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background: #E4C788;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 3px;
    }
    
    .header-cta {
        position: static;
        transform: none;
    }
    
    .cta-btn-standalone {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .main-content {
        margin-top: 80px;
    }
    
    .hero {
        padding-top: 60px;
    }
}

/* Mobile - compact layout */
@media (max-width: 768px) {
    /* Finally switch to single column on mobile */
    .service-tiers {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .tier-card {
        max-width: 100%;
        min-width: unset;
    }
    
    /* Fix checkmark spacing on mobile */
    .tier-features li {
        padding-left: 28px;
    }
    
    .tier-features li:before {
        left: 8px;
    }
    
    .header {
        height: 70px;
    }
    
    .header-logo::after {
        font-size: 16px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .cta-btn-standalone {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .services-disclaimer {
        font-size: 1rem;
        padding: 20px;
    }
}

/* ==========================================================================
   SERVICE AREAS SECTION
   ========================================================================== */

.service-areas-section {
    background: #1a1a1a;
    padding: 80px 0;
    border-top: 1px solid rgba(228, 199, 136, 0.2);
}

.service-areas-content {
    text-align: center;
}

.service-areas-content h2 {
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-areas-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(228, 199, 136, 0.4);
}

.area-card h3 {
    color: #E4C788;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.area-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-link {
    display: inline-block;
    color: #E4C788;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.area-link:hover {
    border-bottom-color: #E4C788;
}

.service-area-cta {
    margin-top: 30px;
}

.service-area-cta p {
    color: #f5f5f5;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .area-card {
        padding: 25px;
    }
    
    .service-areas-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   OTHER AREAS CROSS-LINKING SECTION
   ========================================================================== */

.other-areas-section {
    background: rgba(45, 45, 45, 0.3);
    padding: 60px 0;
    border-top: 1px solid rgba(228, 199, 136, 0.15);
}

.other-areas-content {
    text-align: center;
}

.other-areas-content h2 {
    color: #E4C788;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.other-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.other-area-item {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid rgba(228, 199, 136, 0.15);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.other-area-item:hover {
    transform: translateY(-3px);
    border-color: rgba(228, 199, 136, 0.3);
}

.other-area-item h3 {
    margin-bottom: 10px;
}

.other-area-item h3 a {
    color: #E4C788;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.other-area-item h3 a:hover {
    color: #f0d799;
}

.other-area-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}