/* --- 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.75);
    
    --accent-orange: hsl(20, 100%, 55%);
    --accent-orange-hover: hsl(22, 100%, 60%);
    --accent-orange-glow: hsla(20, 100%, 55%, 0.2);
    
    --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: 8px;
    --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.02em;
}

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

.gradient-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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.3s 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: 1px solid var(--border-color);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
}

.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: background-color 0.3s;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.05);
}

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

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 0.85rem;
    padding: 8px 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.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) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    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.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: hsla(20, 100%, 55%, 0.1);
    border: 1px solid hsla(20, 100%, 55%, 0.2);
    color: var(--accent-orange);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 107, 53, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

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

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

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

.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-actions {
    display: flex;
    gap: 16px;
}

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

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    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 STYLES --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-family: var(--font-headers);
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
}

/* --- SERVICES & PRICING --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover .card-glow {
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.pricing-card.premium {
    background: linear-gradient(180deg, var(--bg-main) 0%, hsla(240, 10%, 8%, 0.8) 100%);
    border-color: hsla(20, 100%, 55%, 0.3);
}

.pricing-card.premium:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px -10px rgba(255, 107, 53, 0.15);
}

.pricing-card.premium .card-glow {
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    height: 4px;
}

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

.service-name {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    font-family: var(--font-headers);
}

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

.service-desc {
    font-size: 1rem;
    margin-bottom: 32px;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

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

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

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.card-btn {
    align-self: stretch;
}

/* --- PRICE CALCULATOR --- */
.calculator-section {
    padding: 100px 0;
    position: relative;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.calculator-info {
    max-width: 500px;
}

.calculator-highlights {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-family: var(--font-headers);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1.2;
}

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

.calculator-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.calculator-card-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.calc-row:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color);
}

.calc-label {
    display: flex;
    flex-direction: column;
}

.calc-service-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.calc-service-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quantity-selector {
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.qty-btn:hover {
    background-color: var(--bg-surface-hover);
}

.qty-btn:active {
    background-color: var(--border-color);
}

.qty-val {
    font-family: var(--font-headers);
    font-weight: 700;
    width: 32px;
    text-align: center;
    font-size: 1.1rem;
}

.calc-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 24px 0;
}

.calc-summary {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.calc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.total-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
}

.total-price {
    font-family: var(--font-headers);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.calc-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.calc-time-row strong {
    color: var(--accent-orange);
}

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

/* --- BLADES & KNIVES --- */
.knives-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.blades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.blade-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.blade-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.blade-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: hsla(20, 100%, 55%, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.blade-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.blade-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blade-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* OTHER SHARPENING */
.other-sharpening-block {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

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

.other-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.other-item {
    display: flex;
    gap: 16px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    position: relative;
}

.other-item.coming-soon {
    opacity: 0.7;
    background-color: hsla(240, 10%, 8%, 0.4);
}

.other-icon {
    width: 40px;
    height: 40px;
    background-color: hsla(20, 100%, 55%, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.other-icon svg {
    width: 20px;
    height: 20px;
}

.other-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.other-info p {
    font-size: 0.85rem;
}

.soon-badge {
    background-color: var(--border-color);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.history-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: border-color 0.3s;
}

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

.history-stat {
    font-family: var(--font-headers);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.history-label {
    font-weight: 500;
    font-size: 1.05rem;
}

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

.about-para {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.trust-item {
    display: flex;
    gap: 16px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background-color: hsla(20, 100%, 55%, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.9rem;
}

/* --- CONTACT & DROP-OFF --- */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: border-color 0.3s, transform 0.3s;
}

.contact-card:not(.note-card):hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(20, 100%, 55%, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.link-label {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.note-card {
    border-left: 3px solid var(--accent-orange);
}

/* Form Styling */
.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-lg);
    position: relative;
}

.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.3s, box-shadow 0.3s;
}

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

.send-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.submit-btn:hover .send-icon {
    transform: translate(2px, -2px);
}

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

.hidden {
    display: none !important;
}

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

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    max-width: 260px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-hours p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

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

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

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .pricing-grid {
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .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; /* Scrollable menu on shorter mobile displays */
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-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);
    }
    
    /* Lock body scroll when navigation drawer is open */
    body.mobile-nav-active {
        overflow: hidden;
    }
    
    /* Layouts & Typography */
    .hero-title {
        font-size: 2.4rem; /* Downscaled for mobile viewport margins */
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-info {
        text-align: center;
        max-width: 100%;
    }
    
    .calculator-highlights {
        justify-content: center;
        margin-top: 24px;
    }
    
    /* Larger tap targets for calculator quantity buttons on mobile */
    .qty-btn {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .qty-val {
        width: 40px;
        font-size: 1.2rem;
    }
    
    /* Prevent iOS auto-zoom on input focus */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
    
    .other-items {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .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-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .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;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
