/* ==========================================================================
   FONT DEFINITIONS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&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;
    background-color: #1a1a1a;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', -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;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

.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: row;
    align-items: center;
    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-phone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 225px;
    z-index: 10;
}

.phone-number {
    color: #E4C788 !important;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

a.phone-number,
a.phone-number:link,
a.phone-number:visited,
a.phone-number:hover,
a.phone-number:active {
    color: #E4C788 !important;
}

.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: 10px;
    top: 55%;
    transform: translateY(-50%);
}

.header-brand {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 70px;
}

.brand-text {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #E4C788;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-left: -15px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img-center {
    height: 65px;
    width: auto;
    display: block;
    margin-top: 3px;
}

.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% - 380px);
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    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: 64vh; /* Increased height for better button spacing */
    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: 'Nunito', -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: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: clamp(2.17rem, 5.78vw, 4.34rem); /* Reduced by 27.75% from original */
    font-weight: 800;
    line-height: 1.1;
    color: #E4C788;
    margin: 0;
    text-shadow: 0 0 20px rgba(212,165,116,0.2);
    white-space: nowrap;
}

/* Hero break control for responsive line breaks */
.hero-break {
    display: block;
}


.hero-description {
    font-family: 'Nunito', -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: 'Nunito', -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: 0;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.process-details li:before {
    content: "→  ";
    color: #E4C788;
    font-weight: bold;
    margin-right: 8px;
}

/* ==========================================================================
   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;
}


/* ==========================================================================
   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: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: rgba(45, 45, 45, 0.8);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(228, 199, 136, 0.2);
    position: sticky;
    top: 100px;
}

.contact-info-sidebar h2 {
    color: #E4C788;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-sidebar > p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(228, 199, 136, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(228, 199, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    color: #E4C788;
    width: 24px;
    height: 24px;
}

.contact-info-text h3 {
    color: #E4C788;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-link-large {
    color: #f5f5f5;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-link-large:hover {
    color: #E4C788;
}

.contact-subtext {
    color: #999 !important;
    font-size: 0.85rem !important;
}

/* Contact Form Container */
.contact-form-container {
    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: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    color: #1a1a1a;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 199, 136, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #f0d799 0%, #E4C788 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 199, 136, 0.4);
    color: #1a1a1a;
}

/* ==========================================================================
   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-main-title {
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.image-container {
    order: 1;
}

.about-image {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.text-container {
    order: 2;
}

.about-text {
    color: #cccccc;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.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-section .container {
    max-width: 1500px;
}

.developer-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 60px;
    align-items: start;
}

.developer-image {
    display: flex;
    justify-content: center;
}

.developer-portrait {
    width: 600px;
    height: 600px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.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: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.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;
}

/* Philosophy Section */
.philosophy-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #E4C788;
    font-size: 2.5rem;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #444;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-3px);
    border-color: #C5A572;
}

.philosophy-item h3 {
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.philosophy-item p {
    color: #ccc;
    line-height: 1.6;
}

.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
   ========================================================================== */

/* Technical Services Section */
.technical-services {
    padding: 4rem 0;
    background-color: #2a2a2a;
}

.technical-services h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #E4C788;
    font-size: 2.5rem;
}

.technical-services > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.tech-service {
    background: #333;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

.tech-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(197, 165, 114, 0.2);
    border-color: #C5A572;
}

.tech-service h3 {
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-service p {
    color: #ccc;
    line-height: 1.6;
}

/* Developer Showcase Section */
.developer-showcase {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 20px;
    overflow: hidden;
}

.developer-showcase-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.developer-showcase-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.developer-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-showcase-badge {
    background: rgba(228, 199, 136, 0.95);
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #E4C788;
    font-size: 2.5rem;
}

.service-areas > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-item {
    text-align: center;
    padding: 2rem;
    background: #333;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
}

.area-item h3 {
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.area-item p {
    color: #ccc;
    line-height: 1.6;
}

.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;
}

/* ==========================================================================
   LOCATION PAGES - BLUFFTON, BEAUFORT, HILTON HEAD
   ========================================================================== */

.location-content {
    margin-top: 60px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.location-info,
.service-areas {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 40px 35px;
}

.location-info h3,
.service-areas h3 {
    color: #E4C788;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.location-info ul,
.service-areas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-info li,
.service-areas li {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.location-info li:before,
.service-areas li:before {
    content: '•';
    color: #E4C788;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.location-info li strong {
    color: #E4C788;
    font-weight: 600;
}

.local-services {
    margin-top: 60px;
}

.local-services h3 {
    color: #E4C788;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-item h4 {
    color: #E4C788;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

.other-areas-section {
    background: rgba(30, 30, 30, 0.5);
    padding: 80px 0;
    margin-top: 60px;
}

.other-areas-content h2 {
    color: #E4C788;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.other-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.other-area-item {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.other-area-item h3 a {
    color: #E4C788;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.other-area-item h3 a:hover {
    color: #f0d799;
}

.other-area-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-top: 15px;
    font-size: 1rem;
}


.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;
}


.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;
}

/* Website Audit - Full Width Tier */
.audit-tier-wrapper {
    margin-top: 40px;
    max-width: 100%;
    padding: 0 20px;
}

.tier-card.audit-tier {
    width: 100%;
    max-width: 100%;
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid #E4C788;
}

.tier-card.audit-tier .tier-header {
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    min-height: 80px;
    color: #1a1a1a;
}

.tier-card.audit-tier .tier-header h2 {
    font-size: 2rem;
}

.audit-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.audit-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-features {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.audit-features h3 {
    margin-bottom: 15px;
}

.audit-features .tier-features {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.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 with Image - Two Column Layout */
.process-with-image {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 40px;
    align-items: start;
    margin-top: 60px;
}

.process-image-column {
    position: sticky;
    top: 100px;
}

.process-workspace-image {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-boxes-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* 50/50 Portfolio + Process Layout - Full Width Edge to Edge */
.process-with-portfolio {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    width: 100%;
    margin: 60px 0 0 0;
    padding: 0;
    align-items: start;
}

.portfolio-image-column {
    position: relative;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-with-portfolio .process-boxes-column {
    padding: 40px 60px;
}

/* Process boxes in portfolio section - 27.1% smaller total with narrower width */
.process-with-portfolio .process-box {
    padding: 29.16px;
    border-radius: 14.58px;
    margin-left: 15px;
    margin-right: 15px;
}

.process-with-portfolio .process-number {
    font-size: 2.2rem;
    margin-bottom: 14.58px;
}

.process-with-portfolio .process-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10.935px;
}

.process-with-portfolio .process-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.portfolio-card {
    width: 81%;
    margin: 0 auto;
}

.portfolio-carousel {
    position: relative;
}

.portfolio-carousel-track {
    position: relative;
}

.portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.portfolio-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.portfolio-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    line-height: 0;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* REMOVED: Duplicate process-grid definition - causes cascade conflicts */

.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: 8px;
    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: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0;
    accent-color: #E4C788;
    flex-shrink: 0;
}

.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: 8px;
    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: 8px;
    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;
}

/* ==========================================================================
   FLOATING CALL BUTTON (MOBILE ONLY)
   ========================================================================== */

.floating-call-btn {
    display: none; /* Hidden by default, shown only on mobile breakpoints */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #E4C788 0%, #D4B976 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(228, 199, 136, 0.4);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.floating-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(228, 199, 136, 0.6);
}

.floating-call-btn svg {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
}

/* Contact Popup */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background: #1a1a1a;
    border: 2px solid #E4C788;
    border-radius: 12px;
    padding: 30px;
    max-width: 300px;
    width: 90%;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

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

.contact-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #E4C788;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.contact-popup-content h3 {
    color: #E4C788;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(228, 199, 136, 0.1);
    border: 2px solid #E4C788;
    border-radius: 8px;
    color: #E4C788;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: #E4C788;
    color: #1a1a1a;
}

.contact-option svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-option span {
    font-size: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET AND MOBILE
   ========================================================================== */

/* OLD BREAKPOINTS - COMMENTED OUT - REPLACED BY CONSOLIDATED SECTION AT END
/* Large Desktop to Tablet Transition - Prevent Header Overflow */






/* Mobile Devices */





/* ==========================================================================
   PORTFOLIO PAGE STYLES
   ========================================================================== */

.portfolio-section {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

#particles-js-portfolio {
    position: absolute;
    width: 100%;
    height: calc(100% + 1000px);
    top: 0;
    left: 0;
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-intro h2 {
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.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: 30px;
}

.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(3, 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;
    height: 420px;
}

.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: 320px;
    overflow: hidden;
    background: #000000;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    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: 10px 30px 30px 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: #000000 !important;
    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;
    height: 420px !important;
}

.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;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

/* Section Divider */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E4C788, transparent);
    margin: 0 0 60px 0;
}

.why-choose-quality {
    background: #1a1a1a;
    padding: 0 0 80px 0;
    border-bottom: 1px solid rgba(228, 199, 136, 0.2);
    position: relative;
    z-index: 1;
}

.why-choose-quality .container {
    position: relative;
    z-index: 1;
}

.why-choose-quality .section-title {
    text-align: center;
    color: #E4C788;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.choice-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Center the 7th card */
.choice-quality-grid .choice-card:nth-child(7) {
    grid-column: 2 / 3;
}

.choice-card {
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}

.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(228, 199, 136, 0.5);
    background: rgba(45, 45, 45, 0.95);
}

.choice-card .card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgba(228, 199, 136, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(228, 199, 136, 0.3);
    transition: all 0.3s ease;
}

.choice-card:hover .card-icon {
    background: rgba(228, 199, 136, 0.2);
    border-color: #E4C788;
}

.choice-card h3 {
    color: #E4C788;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.choice-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Business Credibility Section */
.business-credibility {
    padding: 4rem 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.business-credibility h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #E4C788;
    font-size: 2.5rem;
}

.business-credibility > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.credibility-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

.credibility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(197, 165, 114, 0.15);
    border-color: #C5A572;
}

.credibility-item h3 {
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.credibility-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Design Capabilities Section */
.design-capabilities {
    padding: 4rem 0;
    background-color: #2a2a2a;
}

.design-capabilities h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #E4C788;
    font-size: 2.5rem;
}

.design-capabilities > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.capability-item {
    background: #333;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #444;
}

.capability-item:hover {
    transform: translateY(-3px);
    border-color: #C5A572;
}

.capability-item h3 {
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.capability-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Portfolio Coverage Section */
.portfolio-coverage {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.portfolio-coverage h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #E4C788;
    font-size: 2.5rem;
}

.portfolio-coverage > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #333;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item h3 {
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stat-item p {
    color: #ccc;
    line-height: 1.6;
}

.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 */
/* REMOVED: Line 2701 - Redundant portfolio-grid rule (identical to consolidated 768px breakpoint) */

/* REMOVED: Line 2703 - @media (max-width: 1024px) and (min-width: 769px) - All rules migrated to consolidated TABLET MOBILE breakpoint (769px-1000px) */

/* ==========================================================================
   ADDITIONAL RESPONSIVE FIXES
   ========================================================================== */







/* Mobile - compact layout */
/* REMOVED: Line 2716 - @media (max-width: 768px) - All unique service tier and mobile styling rules migrated to consolidated 768px breakpoint */

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */

.reviews-section {
    background: #2a2a2a;
    padding: 80px 0;
    border-top: 1px solid rgba(228, 199, 136, 0.2);
    border-bottom: 1px solid rgba(228, 199, 136, 0.2);
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #E4C788;
    font-size: 2.5rem;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border: 1px solid rgba(228, 199, 136, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.star {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 25px;
    quotes: """ """;
}

.review-text::before {
    content: open-quote;
    font-size: 1.5em;
    color: #E4C788;
}

.review-text::after {
    content: close-quote;
    font-size: 1.5em;
    color: #E4C788;
}

.review-author {
    font-size: 1.1rem;
    color: #E4C788;
    font-weight: 600;
    font-style: normal;
}

/* Responsive Design */
/* REMOVED: Line 2794 - @media (max-width: 768px) - Completely redundant, all review styling rules already exist in consolidated 768px breakpoint */

/* REMOVED: Line 2823 - @media (max-width: 480px) - All 480px review mobile styling (review-card, review-text, review-author) migrated to consolidated 480px breakpoint */

/* ==========================================================================
   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;
}

.services-intro {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Service Tiers - 3 Card Layout */
.service-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-tier-card {
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(228, 199, 136, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(228, 199, 136, 0.5);
    background: rgba(45, 45, 45, 0.7);
}

.service-tier-card h3 {
    color: #E4C788;
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.tier-description {
    color: #f5f5f5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tier-target {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tier-link {
    display: inline-flex;
    align-items: center;
    color: #E4C788;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tier-link:hover {
    color: #f0d799;
    transform: translateX(5px);
}

.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;
}

.service-area-cta .cta-subtext {
    color: #E4C788;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.service-area-cta .cta-btn {
    color: #1a1a1a !important;
}

.service-keywords {
    margin-top: 30px;
    padding: 20px;
    background: rgba(228, 199, 136, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(228, 199, 136, 0.2);
    text-align: left;
}

.service-keywords h4 {
    color: #E4C788;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-keywords p {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 8px 0;
}

.service-keywords p:first-of-type {
    margin-top: 0;
}

.service-keywords p:last-of-type {
    margin-bottom: 0;
}

.service-keywords strong {
    color: #f5f5f5;
    font-weight: 600;
}

/* Mobile Responsive */
/* REMOVED: Line 2925 - @media (max-width: 768px) - All service areas mobile rules (areas-grid, area-card, service-areas-content h2) migrated to consolidated 768px breakpoint */

END OF OLD BREAKPOINTS - REPLACED BY CONSOLIDATED SECTION BELOW */

/* ==========================================================================
   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;
}

/* ==========================================================================
   CONSOLIDATED RESPONSIVE DESIGN - INDUSTRY STANDARD BREAKPOINTS
   ========================================================================== */

/* LARGE DESKTOP - 1441px and above */
/* Base styles apply here - no media query needed */

/* ULTRA-WIDE DESKTOP - 1201px to 1440px */
@media (max-width: 1440px) and (min-width: 1201px) {
    /* Process boxes - add padding to prevent right edge touch */
    .process-boxes-column {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .process-with-image .process-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Fix desktop header layout - horizontal navigation */
    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        height: 100%;
    }

    /* CRITICAL: Show desktop navigation (override mobile hide) */
    .header-nav {
        display: flex;
        align-items: center;
    }

    .header-center-content {
        gap: 20px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: auto;
    }

    .nav-list {
        gap: 50px;
        display: flex;
        flex-direction: row;
    }

    .nav-link {
        font-size: 20px;
        margin-top: 2px;
    }

    .brand-text {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-left: -15px;
    }

    .header-brand {
        gap: 8px;
    }

    .header-brand-link {
        left: 10px;
        top: 53%;
    }

    .logo-img-center {
        height: 48px;
        margin-top: 11px;
    }

    .cta-btn-standalone {
        padding: 12px 28px;
        font-size: 15px;
    }

    /* Development Process - 2 columns for desktop */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 4.4rem !important;
        white-space: nowrap;
        word-wrap: break-word;
        max-width: 100%;
    }
}

/* TABLET - 1001px to 1200px (Navigation stays centered) */
@media (max-width: 1200px) and (min-width: 1001px) {
    /* Contact sidebar - move up */
    .contact-info-sidebar {
        top: 0px;
    }

    /* Process boxes - fix right side spacing */
    .process-boxes-column {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .process-image-column {
        margin-left: 10px !important;
        margin-right: -30px !important;
    }

    .process-with-image .process-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .header {
        height: 90px;
    }

    .main-content {
        margin-top: 90px;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 100%;
        position: relative;
    }

    /* CRITICAL: Show desktop navigation (override mobile hide) */
    .header-nav {
        display: flex;
        align-items: center;
    }

    /* Keep brand on left */
    .header-brand-link {
        position: absolute;
        left: 10px;
        top: 58%;
        transform: translateY(calc(-50% + 5px));
    }

    .brand-text {
        font-size: 1.3rem;
        margin-top: 14px;
        transform: translateY(-1px);
    }

    .logo-img-center {
        height: 45px;
    }

    /* Center navigation */
    .header-center-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: auto;
    }

    .nav-list {
        gap: 25px;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: -5px;
        transform: translateY(3px);
    }

    .nav-link {
        font-size: 17px;
    }

    /* Keep CTA on right */
    .header-phone {
        right: 175px;
    }

    .phone-number {
        font-size: 14px;
    }

    .header-cta {
        position: absolute;
        right: 20px;
        top: 46%;
        transform: translateY(calc(-50% + 3px));
    }

    .cta-btn-standalone {
        padding: 8px 20px;
        font-size: 13px;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.5rem !important;
        white-space: nowrap;
        word-wrap: break-word;
        max-width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Service Tier Cards - Fix layout issues */
    .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;
    }

    /* Override tier-word-break to allow natural wrapping in BP4 */
    .tier-word-break {
        display: inline;
    }

    /* Service Tier Grid Layout - Fix premium card overflow */
    .service-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Center Premium Websites card (3rd item) */
    .service-tiers .tier-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Container constraints to prevent premium card overflow */
    .container {
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Process Grid Layout - 2 columns for tablet */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem) !important;
        white-space: nowrap;
        word-wrap: break-word;
        max-width: 100%;
    }
}

/* LARGE TABLET - 769px to 1000px */
@media (max-width: 1000px) and (min-width: 769px) {
    /* Contact page - reduce sidebar width for lower end containment */
    .contact-section .container {
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    .contact-grid {
        grid-template-columns: 300px 1fr !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-info-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
        text-align: left;
    }

    .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 25px !important;
        box-sizing: border-box !important;
    }

    .contact-link-large {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .contact-info-text h3 {
        font-size: 0.95rem !important;
    }

    .contact-info-text p {
        font-size: 0.85rem !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .contact-form,
    .form-group,
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }

    /* Process boxes - fix right side spacing */
    .process-boxes-column {
        padding-left: 30px !important;
        padding-right: 50px !important;
    }

    .process-image-column {
        margin-right: -40px !important;
        margin-left: 10px !important;
    }

    .process-with-image .process-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Portfolio + Process 50/50 Layout - Stack vertically on tablet */
    .process-with-portfolio {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio-image-column {
        order: 1;
    }

    .process-boxes-column {
        order: 2;
    }

    /* Service Tiers - Stack on tablet */
    .service-tiers {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .developer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .developer-bio {
        text-align: left;
    }

    .developer-bio h2,
    .developer-bio h3,
    .developer-bio .developer-title {
        text-align: center;
    }

    .developer-portrait {
        width: 450px;
        height: 450px;
    }

    .header {
        height: 80px;
    }

    .main-content {
        margin-top: 80px;
    }

    .brand-text {
        font-size: 1.6rem;
        transform: translateY(-17px);
    }

    .logo-img-center {
        height: 45px;
        transform: translateY(-9px);
    }

    .header-brand-link {
        transform: translateY(-16px);
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    .cta-btn-standalone {
        padding: 6px 16px;
        font-size: 12px;
    }

    /* Process Grid Layout - 2 columns for tablet mobile */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Portfolio Layout - 2 columns for tablet mobile */

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .portfolio-content {
        padding: 25px;
    }

    /* Service Tiers - 2 columns for large tablet */
    .service-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Center Premium Websites card (3rd item) */
    .service-tiers .tier-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .portfolio-content h3 {
        font-size: 20px;
    }

    /* Typography for tablet mobile */
    .category-title {
        font-size: 28px;
    }

    .subcategory-title {
        font-size: 20px;
    }

    /* CTA Button Styling for tablet mobile */
    .cta-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .cta-btn.primary,
    .cta-btn.secondary {
        width: auto;
    }

    /* Ensure all CTA sections have buttons side-by-side */
    .about-cta .cta-buttons,
    .contact-cta .cta-buttons,
    .portfolio-cta .cta-buttons,
    .services-cta .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }

    /* Disclaimer and CTA content for tablet mobile */
    .disclaimer-notice h2 {
        font-size: 24px;
    }

    .disclaimer-notice p {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    /* Mobile Menu Activation for Tablet Mobile Range */
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .mobile-menu-overlay {
        display: none !important;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-menu-overlay.active {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .header-contact {
        display: none;
    }

    /* Show phone number to left of hamburger menu */
    .header-phone {
        display: block;
        right: 80px;
    }

    .phone-number {
        font-size: 14px;
    }

    .header-cta {
        display: none;
    }
}


/* TABLET PORTRAIT - 481px to 768px */
@media (max-width: 768px) and (min-width: 481px) {
    /* Show floating call button */
    .floating-call-btn {
        display: flex;
    }

    /* Website Audit - Tablet Responsive */
    .audit-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Disable particles on tablet portrait and smaller */
    #particles-js-portfolio {
        display: none !important;
    }

    /* Contact page - single column */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-sidebar {
        position: static;
        text-align: center;
    }

    .contact-info-sidebar h2,
    .contact-info-sidebar > p {
        text-align: center;
    }

    .contact-info-sidebar .contact-info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact-info-sidebar .contact-info-text {
        text-align: center;
    }

    .contact-info-sidebar .contact-info-text h3,
    .contact-info-sidebar .contact-info-text p,
    .contact-info-sidebar .contact-info-text a {
        text-align: center;
    }

    /* Process boxes - single column while keeping image */
    .process-with-image {
        gap: 20px !important;
        padding-left: 20px !important;
    }

    .process-image-column {
        margin-right: -20px !important;
    }

    .process-boxes-column {
        grid-template-columns: 1fr !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        max-width: 100% !important;
    }

    .process-with-image .process-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Portfolio + Process 50/50 Layout - Stack vertically on mobile */
    .process-with-portfolio {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .process-boxes-column {
        grid-template-columns: 1fr !important;
    }

    .developer-portrait {
        width: 450px;
        height: 450px;
    }

    .header {
        height: 70px;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .main-content {
        margin-top: 70px;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        height: 100%;
        position: relative;
    }

    /* Hide Desktop Elements */
    .header-buttons {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Advanced Hamburger Menu Styling */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background: #E4C788;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Header Brand Positioning */
    .header-brand-link {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: auto;
    }

    .brand-text {
        font-size: 1.4rem;
        transform: translateY(-8px);
    }

    .logo-img-center {
        height: 40px;
        transform: translateY(2px);
    }

    .header-cta {
        right: 50px;
    }

    .cta-btn-standalone {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero {
        min-height: 45vh;
        padding: 20px 0;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        white-space: normal;
    }

    .hero-description {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Service Areas Mobile Styling */
    .area-card {
        padding: 25px;
    }

    .service-areas-content h2 {
        font-size: 2rem;
    }

    /* Location Pages Mobile Responsive */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .location-info,
    .service-areas {
        padding: 30px 25px;
    }

    .location-info h3,
    .service-areas h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .location-info li,
    .service-areas li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Additional Location Page Mobile Rules */
    .local-services h3 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

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

    .service-item {
        padding: 25px 20px;
    }

    /* Development Process Grid - Single Column Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .other-areas-section {
        padding: 60px 0;
        margin-top: 40px;
    }

    .other-areas-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .other-areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .other-area-item {
        padding: 30px 25px;
    }

    .other-area-item h3 a {
        font-size: 1.4rem;
    }

    /* About Page Mobile Layout - Developer Section */
    .developer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Service Tier Word Break - Mobile */
    .tier-word-break {
        display: inline;
    }

    /* Service Tier Cards - Single Column Mobile Layout */
    .service-tiers {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .tier-card {
        max-width: 100%;
        min-width: unset;
    }

    /* Website Audit - Mobile Responsive */
    .audit-content-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .tier-card.audit-tier .tier-header h2 {
        font-size: 1.5rem;
    }

    /* Fix checkmark spacing on mobile */
    .tier-features li {
        padding-left: 28px;
    }

    .tier-features li:before {
        left: 8px;
    }

    /* Additional Header/Logo Mobile Styling */
    .header-logo::after {
        font-size: 16px;
    }

    .logo-img {
        height: 35px;
    }

    /* Hero Mobile Adjustments */
    .hero {
        padding-top: 40px;
    }

    /* Services Disclaimer Mobile Styling */
    .services-disclaimer {
        font-size: 1rem;
        padding: 20px;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .review-card {
        padding: 30px 20px;
    }

    .review-text {
        font-size: 1.1rem;
    }

    .review-stars {
        gap: 6px;
    }

    .star {
        width: 20px;
        height: 20px;
    }

    /* Page Header Mobile Heights */
    .page-header {
        padding: 140px 0 120px;
        min-height: 450px;
    }

    /* Footer Mobile Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer {
        padding: 30px 0 15px;
    }

    /* CRITICAL: Mobile Menu Activation */
    .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 */
    }

    /* Disable card animations on mobile */
    .philosophy-item:hover,
    .tech-service:hover,
    .area-item:hover,
    .service-item:hover,
    .other-area-item:hover,
    .tier-card:hover,
    .portfolio-item:hover,
    .credibility-item:hover,
    .capability-item:hover,
    .stat-item:hover,
    .review-card:hover,
    .area-card:hover,
    .process-box:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }

    /* Allow line break on mobile */
    .hero-break {
        display: block;
    }

    /* About intro section mobile layout */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .image-container {
        order: 1;
    }

    .text-container {
        order: 2;
    }

    .about-image {
        height: 450px;
    }

    .about-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    /* Why Choose section mobile layout */
    .choice-quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }

    .choice-quality-grid .choice-card:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .choice-card {
        min-height: 200px;
        padding: 25px 15px;
    }

    .choice-card h3 {
        font-size: 1.2rem;
    }

    .choice-card p {
        font-size: 0.95rem;
    }

    .why-choose-quality .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* FAQ Mobile Styling - Merged from Line 4561 */
    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
        max-height: 500px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .services-overview h2 {
        font-size: 1.8rem;
    }

    .services-overview > .container > p {
        font-size: 1rem;
    }

    /* Developer Showcase - Tablet */
    .developer-showcase-image {
        height: 350px;
    }

    .developer-showcase-badge {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

/* MOBILE LARGE - 0px to 480px (Consolidated) */
@media (max-width: 480px) and (min-width: 371px) {
    /* Show floating call button */
    .floating-call-btn {
        display: flex;
    }

    /* Contact section - force viewport containment */
    .contact-section {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 60px 0 !important;
        overflow: hidden !important;
    }

    .contact-section .container {
        max-width: 100vw !important;
        width: 100vw !important;
        padding: 0 15px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-info-sidebar {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 15px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 15px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-info-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        gap: 12px !important;
    }

    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
    }

    .contact-info-text {
        overflow: hidden !important;
        min-width: 0 !important;
    }

    .contact-link-large {
        font-size: 0.95rem !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .contact-info-sidebar {
        text-align: center !important;
    }

    .contact-info-sidebar h2,
    .contact-info-sidebar > p {
        text-align: center !important;
    }

    .contact-info-sidebar .contact-info-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .contact-info-sidebar .contact-info-text {
        text-align: center !important;
    }

    .contact-info-sidebar .contact-info-text h3,
    .contact-info-sidebar .contact-info-text p,
    .contact-info-sidebar .contact-info-text a {
        text-align: center !important;
    }

    /* Start a project - left align form sections */
    .form-group-section {
        text-align: left !important;
    }

    .section-content {
        text-align: left !important;
    }

    .contact-form,
    .form-group,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-row {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }

    .submit-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Process section - single column layout */
    .process-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-image-column {
        position: static;
    }

    .process-workspace-image {
        height: 400px;
    }

    .process-boxes-column {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0 !important;
    }

    /* Portfolio + Process 50/50 Layout - Stack vertically, smaller spacing */
    .process-with-portfolio {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .portfolio-image-column {
        padding: 20px 0 !important;
    }

    .developer-portrait {
        width: 375px;
        height: 375px;
    }

    .developer-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .developer-grid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .developer-bio {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header {
        height: 60px;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .main-content {
        margin-top: 60px;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        height: 100%;
        position: relative;
    }

    /* Hide Desktop Elements */
    .header-buttons {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Advanced Hamburger Menu Styling */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background: #E4C788;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Header Brand Positioning - Breakpoint 2 */
    .header-brand-link {
        position: absolute;
        left: 6px;
        top: 50%;
        transform: translate(0, calc(-50% + 1px));
        max-width: calc(100vw - 80px);
        overflow: visible;
    }

    .header-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: auto;
        white-space: nowrap;
        justify-content: center;
    }

    /* Header text adjustments - move up 10px, left 5px and increase size 2px */
    .brand-text {
        font-size: 1.22rem;
        transform: translate(-5px, -10px);
        white-space: nowrap;
    }

    .logo-img-center {
        height: 37px;
    }

    /* Mobile menu overlay functionality */
    .mobile-menu-overlay {
        display: none !important;
        position: absolute !important;
        width: 260px !important;
        right: -270px !important;
        top: 70px !important;
        padding: 20px !important;
        z-index: 999 !important;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-menu-overlay.active {
        display: block !important;
        right: 15px !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        pointer-events: auto !important;
    }

    .header-cta {
        right: 45px;
    }

    .cta-btn-standalone {
        padding: 5px 10px;
        font-size: 11px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0 auto;
        text-align: center;
    }

    .hero {
        min-height: 475px;
        padding: 40px 0;
        overflow-x: hidden;
        width: 100% !important;
        box-sizing: border-box;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        position: relative;
        text-align: center !important;
        left: 0 !important;
        right: 0 !important;
    }

    .hero .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: calc(100vw - 30px) !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        gap: 1.5rem !important;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        word-wrap: normal;
        hyphens: none;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        white-space: normal;
        word-break: normal;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .hero-description {
        font-size: 0.95rem;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .process-section {
        position: static !important;
        transform: none !important;
        will-change: auto;
    }

    .process-section h2,
    .process-section .section-title {
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        position: static !important;
    }

    .process-box {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .hero-buttons {
        width: 100% !important;
        max-width: 100% !important;
        margin: -0.25rem 0 0 0 !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .hero-btn.primary {
        font-size: 13px;
        padding: 10px 16px;
    }

    .review-card {
        padding: 25px 15px;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .review-author {
        font-size: 1rem;
    }


    /* Portfolio Grid - 1 Column Layout for Breakpoint 2 */
    .portfolio-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
    }

    .portfolio-item {
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Why Choose Our Web Design - 2 Column Layout for Breakpoint 2 */
    .choice-quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .choice-quality-grid .choice-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 15px;
    }

    .choice-quality-grid .choice-card:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Service Tiers - Single Column for Small Mobile */
    .service-tiers {
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin: 0 auto !important;
        text-align: center !important;
        justify-items: center !important;
        max-width: calc(100vw - 20px) !important;
    }

    /* Website Audit - Single Column for 371-480px */
    .audit-content-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .tier-card.audit-tier .tier-header h2 {
        font-size: 1.5rem;
    }

    /* Additional Mobile Layouts - Merged from Line 2335 */

    /* Navigation Mobile Styling */
    .nav-list {
        gap: 20px;
        flex-direction: column;
    }

    .nav-link {
        font-size: 15px;
    }

    .mobile-menu-btn {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

    /* Brand and Logo Mobile Adjustments */
    .brand-word {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 36px;
    }

    .brand-tagline {
        font-size: 22px;
    }

    .header-center-content {
        gap: 15px;
    }

    /* Contact Page Mobile Layouts */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-sidebar {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .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: 8px;
        padding: 15px 20px;
    }

    /* About Page Mobile Layouts */
    .developer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .developer-bio h2,
    .developer-bio h3,
    .developer-title,
    .developer-bio p,
    .developer-skills h4 {
        text-align: left;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skills-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .skills-list li {
        text-align: left;
    }

    .about-intro,
    .developer-section,
    .values-section {
        padding: 40px 0;
    }

    .about-cta {
        padding: 40px 0;
    }

    /* Services Mobile Layouts */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 auto;
        text-align: center;
        justify-items: center;
    }

    .services-overview,
    .additional-services {
        padding: 40px 0;
    }

    .services-cta {
        padding: 40px 0;
    }

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

    .tier-content,
    .service-item,
    .process-step {
        padding: clamp(15px, 5vw, 25px);
    }

    /* ULTIMATE CONTAINMENT: All cards and boxes must fit (excluding tier-card and portfolio-item) */
    .process-box,
    .credibility-item,
    .capability-item,
    .review-card,
    .hero-content,
    .about-text {
        width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        padding: 10px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        left: 0 !important;
        position: relative !important;
    }

    /* Premier Web Design Services Section - Complete Centering */
    .service-areas-section {
        width: 100% !important;
        margin: 0 !important;
        padding: 50px 0 !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .service-areas-section .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
    }

    .service-areas-content {
        width: 100% !important;
        max-width: calc(100vw - 30px) !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .service-areas-content h2,
    .service-areas-content h3,
    .service-areas-content p,
    .core-services,
    .service-area-cta {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .service-areas-content .cta-btn {
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    /* Increase spacing between core services and CTA button */
    .service-area-cta {
        margin-top: 50px !important;
    }

    /* Text elements that were extending - excluding hero elements */
    .about-main-title,
    .section-title {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 40px auto !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        word-wrap: break-word !important;
        left: 0 !important;
        position: relative !important;
    }

    /* CTA elements (excluding hero-buttons) */
    .cta-buttons,
    .service-area-cta {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .cta-btn {
        max-width: calc(100vw - 40px) !important;
        margin: 0 auto !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Hero buttons - left aligned */
    .hero-btn {
        max-width: calc(100vw - 40px) !important;
        margin: 0 !important;
        text-align: left !important;
        box-sizing: border-box !important;
        align-self: flex-start !important;
    }

    /* Section spacing fixes - following working pattern */
    .reviews-section {
        padding: 60px 0;
    }

    /* Developer section override - add proper padding */
    .developer-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .developer-bio {
        width: calc(100vw - 60px) !important;
        max-width: calc(100vw - 60px) !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .developer-image {
        padding: 0 !important;
        margin: 0 auto !important;
        width: calc(100vw - 60px) !important;
        display: flex !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .developer-portrait {
        margin: 0 auto !important;
        display: block !important;
    }

    /* Intake Form Mobile Layouts */
    .intake-form-section {
        padding: 40px 0 60px;
    }

    .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;
    }

    /* Footer Layout Fixes - Prevent Right Side Overflow */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }

    .footer {
        padding: 30px 10px 15px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Responsive footer text scaling */
    .footer-service-areas {
        font-size: clamp(12px, 3.2vw, 15px) !important;
        line-height: 1.4 !important;
        padding: 0 clamp(5px, 1.8vw, 8px) !important;
        word-break: break-word;
        hyphens: auto;
    }

    .contact-link {
        font-size: 16px;
        word-break: break-all;
        line-height: 1.3;
    }

    .footer-container {
        padding: 0 clamp(5px, 1.5vw, 8px);
    }

    /* About Section - Fix "Your Local Web Designer" text overflow */
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .about-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
        width: 100% !important;
        max-width: calc(100vw - 30px) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center;
        box-sizing: border-box !important;
    }

    .about-text {
        width: 100% !important;
        max-width: calc(100vw - 30px) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    /* Page Headers Mobile */
    .page-header {
        padding: 140px 0 120px;
        min-height: 450px !important;
    }

    .section-title {
        font-size: 2rem;
    }

    /* CRITICAL: Mobile Menu Activation */
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    /* Developer Showcase - Mobile */
    .developer-showcase-image {
        height: 250px;
    }

    .developer-showcase-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
}

/* MOBILE SMALL - 320px to 370px */
@media (max-width: 370px) and (min-width: 320px) {
    /* Start a project - 2 column checkbox grids */
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Website Audit - Mobile Responsive */
    .audit-content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tier-card.audit-tier .tier-header h2 {
        font-size: 1.5rem;
    }

    /* Show floating call button */
    .floating-call-btn {
        display: flex;
    }

    /* Contact page - single column layout */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .contact-info-sidebar {
        position: static;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    .contact-info-sidebar h2,
    .contact-info-sidebar > p {
        text-align: center !important;
    }

    .contact-info-sidebar .contact-info-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .contact-info-sidebar .contact-info-text {
        text-align: center !important;
    }

    .contact-info-sidebar .contact-info-text h3,
    .contact-info-sidebar .contact-info-text p,
    .contact-info-sidebar .contact-info-text a {
        text-align: center !important;
    }

    .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }

    .contact-info-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-link-large {
        font-size: 0.75rem !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        white-space: nowrap !important;
    }

    /* Process section - single column layout */
    .process-with-image {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-image-column {
        position: static;
    }

    .process-workspace-image {
        height: 350px;
    }

    .developer-portrait {
        width: 300px;
        height: 300px;
    }

    .process-boxes-column {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Portfolio + Process 50/50 Layout - Ultra-compact for smallest screens */
    .process-with-portfolio {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .header {
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 8px;
        height: 100%;
        position: relative;
    }

    /* Hide Desktop Elements */
    .header-buttons {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Advanced Hamburger Menu Styling */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50%;
        right: 33px;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background: #E4C788;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Header Brand Positioning - Fit within narrow screen */
    .header-brand-link {
        position: absolute;
        left: 36%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: calc(100vw - 60px); /* Increased room for text */
        overflow: visible; /* Allow text to display fully */
    }

    .header-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: auto;
        white-space: nowrap;
        justify-content: center;
    }

    /* CRITICAL: Force all containers to fit viewport */
    .container,
    .hero-content,
    .about-content-grid,
    .process-grid,
    .reviews-section .container,
    .service-areas-section .container,
    .service-areas-content,
    .contact-section .container {
        max-width: 100vw !important;
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* COMPREHENSIVE GRID OVERRIDES */
    .process-grid,
    .about-content-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    /* Reviews and Service Areas - width/margin controls only */
    .reviews-section,
    .service-areas-section {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* Force all sections to respect viewport - NO VERTICAL CENTERING */
    .hero,
    .about-intro,
    .process-section {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    /* Hero height optimization for narrow screens */
    .hero {
        min-height: 400px !important;
        padding: 50px 0 !important;
    }

    /* Reviews and Service Areas - separate rules to allow custom padding */
    .reviews-section,
    .service-areas-section {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .hero-title {
        font-size: clamp(1.4rem, 4vw, 2.3rem);
        word-break: normal;
        hyphens: none;
        overflow-wrap: normal;
        line-height: 1.3;
    }



    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .philosophy-item {
        margin: 0 clamp(2px, 1vw, 5px);
    }

    /* Ensure proper text wrapping for all card content */
    .process-box,
    .tier-card,
    .portfolio-item,
    .credibility-item,
    .capability-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .cta-buttons {
        padding: 0 10px;
    }

    .cta-btn {
        margin: 0 5px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .brand-text {
        font-size: 1.15rem;
        transform: translate(1px, -8px);
    }

    .logo-img-center {
        height: 35px;
    }

    .cta-btn-standalone {
        padding: 4px 8px;
        font-size: 10px;
    }

    .hero-btn.primary {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Service Tiers - Single Column for Micro Mobile */
    .service-tiers {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Service Tier Titles - Fix Overflow */
    .tier-header h2 {
        font-size: 1rem;
        white-space: normal !important;
        word-spacing: normal;
        line-height: 1.2;
        max-width: 100%;
        word-break: keep-all;
        overflow-wrap: normal;
    }

    /* CRITICAL: Mobile Menu Activation */
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 50%;
        right: 33px;
        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;
    }

    /* Hamburger menu - slides left to cover most of header */
    .mobile-menu-overlay {
        display: none !important;
        position: absolute !important;
        width: 240px !important;
        right: -250px !important;
        top: 70px !important;
        padding: 15px !important;
        z-index: 999 !important;
    }

    .mobile-menu-overlay.active {
        display: block !important;
        right: 40px !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    /* Footer Mobile Layout - Fix Overflow */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
        padding: 0 8px;
    }

    .footer {
        padding: 25px 5px 10px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Fix long service areas text overflow - responsive scaling */
    .footer-service-areas {
        font-size: clamp(11px, 3.5vw, 14px) !important;
        line-height: 1.3 !important;
        padding: 0 clamp(3px, 1.5vw, 6px) !important;
        word-break: break-word;
        hyphens: auto;
    }

    /* Fix long email address overflow - responsive scaling */
    .contact-link {
        font-size: clamp(12px, 3.8vw, 15px);
        word-break: break-all;
        line-height: 1.2;
    }

    /* Ensure footer container has proper spacing - responsive */
    .footer-container {
        padding: 0 clamp(3px, 1.2vw, 5px);
    }

    /* About Section - Single Column Layout */
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 5px;
    }

    .about-image {
        height: 375px;
    }

    .about-main-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    /* Additional Services - Single Column Layout */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-item {
        padding: 20px 15px;
    }


    /* Why Choose Our Web Design - 1 Column Layout for Breakpoint 2 */
    .choice-quality-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .choice-quality-grid .choice-card:nth-child(7) {
        grid-column: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .choice-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* About Page - Our Values Single Column */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Portfolio Grid - Single Column Layout */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* About Page - Developer Section Fix */
    .developer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    /* Fix developer bio text overflow */
    .developer-bio {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Professional Web Design Services - Single Column */
    .skills-list {
        grid-template-columns: 1fr !important;
        gap: 5px;
    }

    /* Contact Form - Single Column Layout */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* FAQ Section - Extend Box Height for Longer Answers */
    .faq-item.active .faq-answer {
        max-height: 500px !important;
        padding: 0 15px 20px;
    }

    /* Developer Showcase - Mobile Small */
    .developer-showcase-image {
        height: 200px;
    }

    .developer-showcase-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* ==========================================================================
   CONTACT PAGE NEW SECTIONS
   ========================================================================== */

/* Services Overview Section */
.services-overview {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.services-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #E4C788;
    text-align: center;
}

.services-overview > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.services-list p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
    text-align: center;
}

.services-list p strong {
    color: #E4C788;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #E4C788;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(197, 165, 114, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #E4C788;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.faq-answer p strong {
    color: #E4C788;
}


/* Service Tier Header Fixes */
.services-overview .tier-header h2 strong {
    color: #000;
    font-weight: bold;
}

.tier-badge {
    background: #C5A572;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline;
    margin-left: 10px;
}

/* ==========================================================================
   PORTFOLIO PAGE RESTRUCTURED SECTIONS
   ========================================================================== */

/* Trust & Process Section */
.trust-process {
    padding: 4rem 0;
    background-color: #1e1e1e;
}

.trust-process h2 {
    text-align: center;
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.trust-process > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-content h3 {
    color: #E4C788;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trust-content h3:first-child {
    margin-top: 0;
}

.trust-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Capabilities & Technical Strength Section */
.capabilities-technical {
    padding: 4rem 0;
    background-color: #2a2a2a;
}

.capabilities-technical h2 {
    text-align: center;
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.capabilities-technical > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-content h3 {
    color: #E4C788;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.capabilities-content h3:first-child {
    margin-top: 0;
}

.capabilities-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Experience & Delivery Section */
.experience-delivery {
    padding: 4rem 0;
    background-color: #1e1e1e;
}

.experience-delivery h2 {
    text-align: center;
    color: #E4C788;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.experience-delivery > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-content h3 {
    color: #E4C788;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.experience-content h3:first-child {
    margin-top: 0;
}

.experience-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

