/* Custom Properties / Variables */
:root {
    /* Color Palette */
    --color-primary: #0f172a; /* Deep Navy */
    --color-primary-light: #1e293b;
    --color-bg-light: #f8fafc; /* Off-white / light gray */
    --color-bg-white: #ffffff;
    --color-accent: #ea580c; /* Warm Orange */
    --color-accent-hover: #c2410c;
    --color-text-dark: #1e293b;
    --color-text-body: #475569;
    --color-text-light: #94a3b8;
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Box Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Spacing */
    --section-padding: 5rem 0;
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* offset for sticky header */
}

body {
    font-family: var(--font-family);
    color: var(--color-text-body);
    line-height: 1.6;
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--color-accent); transition: var(--transition); }
a:hover { color: var(--color-accent-hover); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: var(--section-padding); }
.bg-light { background-color: var(--color-bg-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: #f1f5f9; /* Subtle light fill */
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-text-dark);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    padding-top: 130px; /* Offset for header */
    padding-bottom: 7rem;
    background-color: var(--color-bg-white);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(234, 88, 12, 0.05), transparent 40%), 
        radial-gradient(circle at 85% 60%, rgba(15, 23, 42, 0.05), transparent 40%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1250px;
    display: grid;
    grid-template-columns: 1fr 0.9fr; /* ~50/45 layout */
    gap: 5rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--color-text-body);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
}

.trust-line {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-weight: 500;
}

.trust-line i {
    color: var(--color-accent);
}

/* Mockup Card Visual */
.mockup-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    border: 1px solid var(--color-border);
    animation: float 6s ease-in-out infinite;
}

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

.mockup-header {
    background: var(--color-bg-light);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--color-border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.mockup-body {
    padding: 3rem 2.5rem;
}

.mockup-line {
    background: var(--color-bg-light);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.skeleton-title { height: 32px; width: 65%; }
.skeleton-text { height: 16px; width: 100%; }
.skeleton-text.short { width: 85%; }

.mockup-button {
    height: 48px;
    width: 140px;
    background: var(--color-accent);
    border-radius: 6px;
    margin-top: 2rem;
    opacity: 0.9;
}

.mockup-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.mockup-features span {
    font-size: 0.8rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-bg-light);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
}

.mockup-features i {
    color: var(--color-primary-light);
}

.seo-score {
    padding: 1.25rem;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #d1fae5;
}

/* Generic Card Styles */
.card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #e0e7ff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper.accent {
    background-color: #ffedd5;
    color: var(--color-accent);
}

/* General Section Layout */
.section-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Problem Section */
.problem-card {
    padding: 1.75rem;
}

.problem-card .icon-wrapper {
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.problem-footer {
    margin-top: 3.5rem;
}

.problem-footer p {
    font-size: 1.1rem;
    color: var(--color-text-body);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background-color: #faf9f6; /* Very soft warm off-white/beige */
}

.services-container {
    max-width: 1250px;
}

.services-header {
    max-width: 800px;
    margin-bottom: 3.5rem;
    text-align: left;
}

.services-header .section-intro {
    margin-left: 0;
    margin-right: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
}

.service-block .icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-block-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-block h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-block p {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.best-for {
    font-size: 0.9rem;
    color: var(--color-text-body);
    background: var(--color-bg-light);
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--color-accent);
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.best-for strong {
    color: var(--color-primary);
}

.inline-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.inline-link:hover {
    color: var(--color-primary);
    gap: 0.6rem;
}

.services-footer {
    margin-top: 2.5rem;
}

.services-footer p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--color-text-body);
}

.note {
    max-width: 700px;
    margin: 3.5rem auto 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-body);
}

 

/* How It Works Section */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-bg-white);
}

.timeline-connector {
    position: absolute;
    top: 30px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

/* Why Work With Me Section */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-list li,
.checklist-items li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-list i,
.checklist-items i {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-top: 2px;
}

/* Work Samples Section */
.work-samples {
    background-color: var(--color-bg-light);
}

.sample-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.sample-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sample-card:hover {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.sample-card:hover .sample-mockup {
    transform: scale(1.03);
}

.sample-card:hover .sample-link {
    transform: translateX(4px);
    color: var(--color-accent-hover);
}

.sample-mockup {
    height: 180px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
    transform-origin: center bottom;
}

.mockup-browser-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    gap: 4px;
    border-bottom: 1px solid #cbd5e1;
    z-index: 2;
}

.mockup-browser-bar .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
}

.mockup-content {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.7;
}

.mockup-nav {
    height: 8px;
    width: 100%;
    background: #cbd5e1;
    border-radius: 4px;
    margin-bottom: 5px;
}

.mockup-nav.center {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.mockup-hero {
    background: white;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.mockup-hero.event {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e0e7ff;
}

.mockup-icon {
    color: var(--color-primary-light);
    font-size: 1.5rem;
    margin-bottom: 8px;
    opacity: 0.5;
}

.mockup-text-line {
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    margin-bottom: 6px;
    width: 100%;
}

.mockup-text-line.title {
    height: 10px;
    width: 70%;
    background: var(--color-primary-light);
}

.mockup-text-line.short {
    width: 40%;
}

.mockup-text-line.center {
    margin-left: auto;
    margin-right: auto;
}

.mockup-btn {
    height: 14px;
    width: 60px;
    background: var(--color-accent);
    border-radius: 4px;
    margin-top: 8px;
}

.mockup-btn.center {
    margin-left: auto;
    margin-right: auto;
}

.mockup-gallery {
    display: flex;
    gap: 10px;
}

.mockup-img {
    height: 40px;
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px;
}

.mockup-split {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.mockup-split-text {
    flex: 1;
}

.mockup-split-img {
    width: 40px;
    height: 40px;
    background: #ffedd5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1rem;
}

.mockup-blocks {
    display: flex;
    gap: 8px;
}

.mockup-block {
    height: 30px;
    flex: 1;
    background: white;
    border-radius: 4px;
}

.mockup-schedule {
    background: white;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sample-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sample-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    display: inline-block;
}

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

.sample-content p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.sample-tags {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sample-tags li {
    font-size: 0.85rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sample-tags i {
    color: var(--color-accent);
    font-size: 0.75rem;
}

.sample-link {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Pricing Section */
.pricing.section-padding {
    padding-top: 6rem;
}

.pricing-container {
    max-width: 1280px;
}

.pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border: 2px solid var(--color-accent);
    z-index: 2;
    box-shadow: var(--shadow-lg);
    padding-top: 3.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.popular:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price .label {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-weight: 500;
}

.price .period {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-weight: 500;
}

.pricing-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features i {
    color: #10b981; /* Green check */
    margin-top: 4px;
}

.trust-note {
    max-width: 750px;
    margin: 2.5rem auto 1.5rem;
    font-size: 1rem;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.6;
    background: #f1f5f9;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-accent);
}

.pricing-notes {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-notes p {
    margin-bottom: 0.75rem;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

/* Mini Audit CTA Section */
.cta-banner {
    background-color: var(--color-primary);
    color: white;
    padding: 5rem 0;
}

.cta-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-banner h2 { color: white; }
.cta-banner .small-text { color: #cbd5e1; font-size: 0.9rem; }

/* FAQ Section */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
}

.accordion-header .icon {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    padding-bottom: 1.5rem;
}

.faq-cta {
    margin-top: 3.5rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-trust-list {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

.contact-trust-list i {
    color: var(--color-accent);
    margin-top: 5px;
}

.email-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.email-card:hover {
    border-color: var(--color-accent);
    background: white;
    box-shadow: var(--shadow-sm);
}

.email-icon {
    width: 40px;
    height: 40px;
    background: #ffedd5;
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.email-content .email-label {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-weight: 500;
}

.email-content .email-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: inline-block;
}

.email-content .email-link:hover {
    color: var(--color-accent);
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

select {
    appearance: none;
    background: white;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-light);
}

/* Form Status */
.form-status {
    text-align: center;
    font-weight: 500;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

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

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #b91c1c;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-body);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: #f1f5f9;
    padding: 4rem 0 0;
}

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

.footer h3, .footer h4 { color: white; }

.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links a, .footer-contact a {
    color: #cbd5e1;
}
.footer-links a:hover, .footer-contact a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-accent);
}

.footer-bottom {
    background-color: var(--color-primary-light);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up {
    transform: translateY(30px);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .subheadline { font-size: 1.15rem; }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container, .why-layout, .contact-container, .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-block {
        padding: 2rem;
    }
    
    .timeline-connector { display: none; }
    
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
    
    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero { padding-top: 100px; text-align: center; }
    
    .service-block {
        flex-direction: column;
        gap: 1.25rem;
    }
    .hero h1 { font-size: 2.25rem; }
    .subheadline { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links { justify-content: center; }
}

@media (max-width: 576px) {
    .form-row { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}

/* Sample Project Card Clickable Styles */
.sample-project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.sample-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.sample-project-card .card-link-text {
  color: inherit;
  font-weight: 700;
}

.sample-project-card:hover .card-link-text {
  text-decoration: underline;
}

.sample-project-card:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 4px;
}
