/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    /* Color Palette */
    --bg-main: hsl(240, 12%, 5%);
    --bg-surface: hsl(240, 10%, 10%);
    --bg-surface-hover: hsl(240, 10%, 14%);
    --bg-glass: hsla(240, 12%, 5%, 0.85);
    
    --accent-orange: hsl(20, 100%, 55%);
    --accent-orange-hover: hsl(22, 100%, 60%);
    --accent-orange-glow: hsla(20, 100%, 55%, 0.2);
    
    --accent-gold: #d4af37;
    --accent-gold-bg: rgba(212, 175, 55, 0.08);
    --accent-gold-hover: #b59410;
    
    --text-primary: hsl(210, 20%, 96%);
    --text-muted: hsl(215, 16%, 72%);
    --text-dark: hsl(240, 12%, 4%);
    
    --border-color: hsla(240, 8%, 20%, 0.8);
    --border-color-hover: hsla(20, 100%, 55%, 0.4);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Layout Constants */
    --header-height: 80px;
    --max-width: 1200px;
    --border-radius-sm: 6px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Font stacks */
    --font-headers: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & BASIC STYLES --- */
html, body {
    overflow-x: hidden;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-headers);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

.accent-text {
    color: var(--accent-orange);
}

/* --- BUTTONS & INTERACTIVE ELEMENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), hsl(15, 100%, 50%));
    color: var(--text-primary);
    box-shadow: 0 4px 14px var(--accent-orange-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(20, 100%, 55%, 0.4);
    background: linear-gradient(135deg, var(--accent-orange-hover), hsl(15, 100%, 55%));
}

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

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

.btn-secondary:hover {
    background-color: var(--bg-surface-hover);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

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

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-full {
    display: flex;
    width: 100%;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #ffffff;
}

.header-cta:hover {
    color: #ffffff;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 48px;
    height: 48px;
    padding: 8px;
}

.mobile-nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(20, 100%, 55%, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 28px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-tag svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
}

.hero-phone-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headers);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 28px;
}

.phone-icon {
    width: 28px;
    height: 28px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.hero-image-wrapper:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: var(--border-color-hover);
}

/* --- SECTION GENERAL STYLES --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tagline {
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-orange);
    margin-bottom: 14px;
    background-color: var(--accent-orange-glow);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid hsla(20, 100%, 55%, 0.15);
    display: inline-block;
}

.section-title {
    font-size: 2.6rem;
    line-height: 1.2;
    text-align: center;
    position: relative;
}

/* --- SECTION 2 — WHY --- */
.why-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.why-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: linear-gradient(145deg, var(--bg-surface), hsl(240, 10%, 7%));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg), 0 10px 30px hsla(20, 100%, 55%, 0.05);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--accent-orange-glow);
    color: var(--accent-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid hsla(20, 100%, 55%, 0.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.why-card:hover .why-icon-box {
    transform: scale(1.15) rotate(8deg);
    background-color: hsla(20, 100%, 55%, 0.3);
}

.why-icon-box svg {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --- SECTION 3 — SERVICES --- */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.service-card.premium-card {
    border: 2px solid var(--accent-orange);
    background-color: var(--accent-orange-glow);
}

.service-card.premium-card:hover {
    box-shadow: 0 12px 24px -10px hsla(20, 100%, 55%, 0.25);
}

.premium-badge {
    position: absolute;
    top: -14px;
    right: 32px;
    background-color: var(--accent-orange);
    color: var(--text-dark);
    font-family: var(--font-headers);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}

.service-header {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.service-price {
    font-family: var(--font-headers);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.premium-card .service-price {
    color: var(--text-primary);
}

.price-unit {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
}

.service-img-container {
    width: 100%;
    height: 140px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.service-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-thumbnail {
    transform: scale(1.04);
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-tag {
    display: inline-flex;
    align-self: flex-start;
    background-color: var(--bg-main);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.service-tag.gold-tag {
    background-color: var(--accent-orange-glow);
    color: var(--accent-orange);
    border-color: hsla(20, 100%, 55%, 0.3);
}

.service-cta {
    align-self: stretch;
}

/* --- SECTION 4 — WHAT WE SHARPEN --- */
.sharpen-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.sharpen-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.sharpen-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sharpen-item {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s;
}

.sharpen-item:hover {
    border-color: var(--border-color-hover);
}

.check-icon {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.1rem;
}

.coming-soon-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.coming-soon-img-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.coming-soon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.coming-soon-card:hover .coming-soon-img {
    transform: scale(1.04);
}

.coming-soon-content {
    padding: 28px;
}

.coming-soon-content h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.coming-soon-item {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.check-icon.outline {
    color: var(--text-muted);
}

/* --- SECTION 5 — BEFORE & AFTER --- */
.before-after-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ba-column {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-surface);
}

.ba-column.before {
    border-top: 4px solid var(--accent-orange);
}

.ba-column.after {
    border-top: 4px solid #10b981;
}

.ba-subtitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.bullet-icon {
    font-weight: 700;
    flex-shrink: 0;
}

.red-bullet {
    color: var(--accent-orange);
}

.green-bullet {
    color: #10b981;
}

/* --- SECTION 6 — PROCESS --- */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: border-color 0.2s;
}

.step-card:hover {
    border-color: var(--border-color-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: var(--text-dark);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
}

/* --- SECTION 7 — TESTIMONIALS --- */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.testimonial-card:hover {
    border-color: var(--border-color-hover);
}

.star-rating {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    font-family: var(--font-headers);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* --- SECTION 8 — CONTACT --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.contact-card-box {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    width: 100%;
}

.premium-contact-card {
    background: linear-gradient(145deg, var(--bg-surface), hsl(240, 10%, 7%));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: left;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 0 24px rgba(255, 75, 20, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.premium-contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 75, 20, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.premium-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: hsla(240, 10%, 6%, 0.6);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.premium-contact-item:hover {
    border-color: var(--border-color-hover);
    background-color: var(--bg-surface-hover);
    transform: translateX(4px);
}

.premium-contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--accent-orange-glow);
    color: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.premium-contact-item:hover .premium-contact-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: hsla(20, 100%, 55%, 0.3);
}

.premium-contact-icon svg {
    width: 22px;
    height: 22px;
}

.premium-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-contact-label {
    font-family: var(--font-headers);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.premium-contact-link {
    font-family: var(--font-headers);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.premium-contact-item:hover .premium-contact-link {
    color: var(--accent-orange);
}

.contact-label {
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 8px;
}

.contact-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.btn-contact-cta {
    align-self: stretch;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-phone-svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.premium-pulse-btn {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s infinite alternate;
}

.premium-pulse-btn:hover .btn-phone-svg {
    animation: phoneShake 0.5s ease infinite alternate;
}

@keyframes phoneShake {
    0% { transform: rotate(-10deg) scale(1.1); }
    100% { transform: rotate(10deg) scale(1.1); }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 14px var(--accent-orange-glow);
    }
    100% {
        box-shadow: 0 6px 24px hsla(20, 100%, 55%, 0.5);
    }
}

.form-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: left;
}

.form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-align: center;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px var(--accent-orange-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.submit-btn {
    justify-content: center;
}

.hidden {
    display: none !important;
}

.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.success-message h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.success-message p {
    font-size: 0.95rem;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--bg-main);
    color: var(--text-primary);
    padding: 60px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-headers);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-right p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-right a {
    color: var(--text-primary);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

/* --- STICKY MOBILE CALL CTA --- */
.sticky-mobile-cta {
    position: fixed;
    bottom: -80px; /* Hidden initially, controlled by class */
    left: 0;
    right: 0;
    height: 64px;
    background-color: var(--accent-orange);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: none; /* Desktop hidden */
    transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.visible {
    bottom: 0;
}

.sticky-cta-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
}

.sticky-cta-btn:active {
    background-color: var(--accent-orange-hover);
}

.sticky-cta-btn .phone-icon {
    width: 20px;
    height: 20px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .header-cta {
        width: 80%;
        text-align: center;
    }
    
    .mobile-nav-active .mobile-nav-toggle .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-nav-active .mobile-nav-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-active .mobile-nav-toggle .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    body.mobile-nav-active {
        overflow: hidden;
    }
    
    /* Layout Overrides */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-phone-display {
        justify-content: center;
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sharpen-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sharpen-list-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-content {
        align-items: center;
        text-align: center;
    }
    
    .about-para {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-grid {
        align-items: center;
    }
    
    .trust-item {
        text-align: left;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .contact-info-column {
        align-items: center;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
        width: 100%;
    }
    
    .contact-card {
        width: 100%;
        max-width: 480px;
        text-align: left;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-details-list {
        align-items: center;
        text-align: center;
    }

    .btn-contact-cta {
        align-self: center;
    }
    
    .section-title {
        font-size: 2.1rem;
        margin-bottom: 36px;
    }
    
    /* Display sticky CTA */
    .sticky-mobile-cta {
        display: block;
    }
    
    /* Add padding to body to prevent content cutoff by sticky CTA */
    body {
        padding-bottom: 64px;
    }
}

/* --- PRINT STYLESHEET (Ctrl+P Flyer Download Mode) --- */
@media print {
    /* Hide screen-only layouts */
    .main-header,
    .hero-actions,
    .btn,
    .service-cta,
    .sticky-mobile-cta,
    .testimonials-section,
    .process-steps,
    .why-icon-box,
    .hero-bg-glow {
        display: none !important;
    }
    
    /* Reset layout margins for default printing */
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
        font-size: 11pt !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        margin: 0.5in !important;
    }

    .section-header {
        margin-bottom: 20px !important;
        display: block !important;
        text-align: center !important;
    }
    
    .section-tagline {
        background-color: #ffffff !important;
        color: #000000 !important;
        border: none !important;
        padding: 0 !important;
        font-size: 10pt !important;
        margin-bottom: 5px !important;
        text-transform: uppercase !important;
        font-weight: bold !important;
        display: block !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-section {
        padding: 0 0 20px 0 !important;
        border-bottom: 2px solid #000000 !important;
    }
    
    .hero-container {
        display: block !important;
    }
    
    .hero-title {
        font-size: 24pt !important;
        margin-bottom: 10px !important;
    }
    
    .hero-subtitle {
        font-size: 12pt !important;
        margin-bottom: 15px !important;
    }
    
    .hero-phone-display {
        font-size: 20pt !important;
        margin-bottom: 0 !important;
        color: #000000 !important;
    }
    
    .hero-image-wrapper {
        display: none !important; /* Hide massive hero image from printing */
    }
    
    /* Convert services grid into side-by-side rows */
    .services-grid {
        display: block !important;
    }
    
    .service-card {
        page-break-inside: avoid !important;
        border: 1px solid #000000 !important;
        background-color: #ffffff !important;
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .service-card.premium-card {
        background-color: #ffffff !important;
        border: 2px dashed #000000 !important;
    }
    
    .premium-badge {
        border: 1px solid #000000 !important;
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    
    .service-img-container {
        display: none !important; /* Save printer ink */
    }
    
    .service-tag {
        border: 1px solid #000000 !important;
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    
    /* What we sharpen grid */
    .sharpen-grid {
        display: block !important;
    }
    
    .sharpen-list-wrapper {
        grid-template-columns: 1fr 1fr 1fr !important;
        display: grid !important;
        gap: 5px !important;
        margin-bottom: 20px !important;
    }
    
    .sharpen-item {
        border: none !important;
        padding: 0 !important;
        font-size: 10pt !important;
    }
    
    .coming-soon-card {
        border: 1px solid #000000 !important;
        padding: 15px !important;
    }
    
    .coming-soon-img-wrapper {
        display: none !important;
    }
    
    /* Before and After column stacking */
    .ba-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    .ba-column {
        padding: 15px !important;
        border: 1px solid #000000 !important;
    }
    
    /* Why Revival features list */
    .why-section {
        background-color: #ffffff !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid #000000 !important;
    }
    
    .why-grid {
        display: block !important;
    }
    
    .why-card {
        border: none !important;
        padding: 5px 0 !important;
        box-shadow: none !important;
        margin-bottom: 10px !important;
    }
    
    .why-card h3 {
        font-size: 11pt !important;
        margin-bottom: 2px !important;
        font-weight: bold !important;
    }
    
    .why-card p {
        font-size: 9.5pt !important;
    }
    
    /* Contact Box / Footer */
    .contact-section {
        padding: 20px 0 !important;
    }
    
    .contact-card-box,
    .premium-contact-card {
        border: 2px solid #000000 !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        padding: 20px !important;
        box-shadow: none !important;
        transform: none !important;
    }
    
    .premium-contact-item {
        border: none !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        padding: 5px 0 !important;
        gap: 10px !important;
        transform: none !important;
    }
    
    .premium-contact-icon {
        display: none !important;
    }
    
    .premium-contact-link {
        color: #000000 !important;
        font-size: 11pt !important;
    }
    
    .premium-contact-label {
        color: #000000 !important;
        font-size: 9pt !important;
    }
    
    .contact-details-grid {
        gap: 20px !important;
        margin-bottom: 0 !important;
    }
    
    .main-footer {
        background-color: #ffffff !important;
        color: #000000 !important;
        border-top: 1px solid #000000 !important;
        padding: 20px 0 0 0 !important;
    }
    
    .footer-container {
        display: block !important;
    }
    
    .footer-left, .footer-right {
        max-width: 100% !important;
    }
    
    .footer-logo {
        color: #000000 !important;
    }
    
    .footer-desc, .footer-right p, .footer-right a {
        color: #000000 !important;
    }
    
    .footer-bottom {
        display: none !important;
    }
}
