:root {
    /* Color Palette - Okanagan Sunset Theme */
    --bg-color: #f9ecde;
    /* Warm light background */
    --card-bg: #ffffff;
    --text-color: #44403c;
    /* Stone 700 */
    --heading-color: #292524;
    /* Stone 800 */

    /* Brand Colors */
    --primary: #f48100;
    --primary-hover: #d67100;
    --secondary: #57534e;
    /* Stone 600 (Sage-ish Grey) */
    --accent: #65a30d;
    /* Lime 600 (Okanagan Green) */

    --border-color: #e7e5e4;
    /* Stone 200 */

    --logo-bg: transparent;
    --logo-padding: 0;
    --logo-radius: 16px;
    /* Consolidated Radius */

    --nav-bg: rgba(250, 250, 249, 0.95);
    --hero-gradient: linear-gradient(135deg, #f48100 0%, #18457e 100%);
    /* New Orange to Deep Blue */

    /* Spacing - 8px Grid System */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2.5rem;    /* 40px */
    --spacing-xl: 4rem;      /* 64px */
    --spacing-2xl: 5rem;     /* 80px */
    --spacing-3xl: 6rem;     /* 96px */

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(244, 129, 0, 0.15);
    /* Orange Glow */

    /* Radius Standards */
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
}

[data-theme="dark"] {
    --bg-color: #0c0a09;
    /* Stone 950 */
    --card-bg: #1c1917;
    /* Stone 900 */
    --text-color: #a8a29e;
    /* Stone 400 */
    --heading-color: #f5f5f4;
    /* Stone 100 */

    --primary: #f48100;
    --primary-hover: #ff9d2e;
    --secondary: #a8a29e;
    /* Stone 400 */
    --accent: #a3e635;
    /* Lime 400 */

    --border-color: #292524;
    /* Stone 800 */

    --logo-bg: #f5f5f4;
    --logo-padding: 5px 10px;

    --nav-bg: rgba(12, 10, 9, 0.95);
    --hero-gradient: linear-gradient(135deg, #f48100 0%, #18457e 100%);
    --shadow-glow: 0 0 20px rgba(244, 129, 0, 0.15);
}

[data-theme="dark"] .nav-logo {
    background-color: #f5f5f4;
    /* Light background for navbar logo */
    padding: 5px 10px;
    border-radius: var(--radius-lg);
}

[data-theme="dark"] .hero-logo {
    background-color: #f5f5f4;
    /* Light background for large hero logo */
    padding: 20px;
    border-radius: var(--radius-lg);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Base Layout Framing */
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 100px;
    /* Header Height */
}

main {
    width: 100%;
    min-height: calc(100vh - 300px);
}

/* Target sections to be boxed - The "Content Body" framing */
.content-section {
    max-width: 1300px;
    margin: var(--spacing-lg) auto var(--spacing-2xl);
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0;
    position: relative;
}

[data-theme="dark"] .content-section {
    background-color: var(--card-bg);
}

/* Hero & Header - Edge-to-Edge Style */
.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e2 25%, #f9ecde 50%, #f5e6d3 75%, #f0e0d0 100%);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(56, 189, 248, 0.15) 50%, rgba(124, 58, 237, 0.15) 100%);
}

.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e2 25%, #f9ecde 50%, #f5e6d3 75%, #f0e0d0 100%);
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(56, 189, 248, 0.15) 50%, rgba(124, 58, 237, 0.15) 100%);
}

@media (max-width: 1340px) {
    .content-section {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .content-section {
        margin: 40px 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .hero,
    .page-header {
        padding: 60px 0;
        margin-bottom: 0;
    }
}

/* Success Message */
.form-success-msg {
    display: none;
    background: #ecfdf5;
    color: #065f46;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #10b981;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

[data-theme="dark"] .form-success-msg {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    z-index: 9999;
    /* Ensure it stays on top */
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Utilities */
.mt-neg-sm {
    margin-top: -10px;
}

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

/* body { ... moved up ... } */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.narrow {
    max-width: 800px;
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
    height: 60px;
    width: auto;
    display: block;
    background-color: var(--logo-bg);
    padding: var(--logo-padding);
    border-radius: var(--logo-radius);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-lg);
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

/* Contact Buttons in Nav */
.nav-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading-color) !important;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-contact-btn svg {
    line-height: 1;
    display: block;
}

.nav-contact-btn:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}

/* Icon Only Button (Desktop) */
.nav-contact-btn.icon-only {
    padding: 8px;
    border-radius: 50%;
}

.nav-contact-btn.icon-only .btn-text {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    /* Thumbsize */
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--heading-color);
    transition: 0.3s;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary);
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

[data-theme="light"] .sun-icon {
    display: block;
}

[data-theme="light"] .moon-icon {
    display: none;
}

/* Hero Content Elements */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal split to give logo space */
    gap: var(--spacing-xl);
    align-items: stretch;
    /* Make both columns same height */
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: var(--spacing-lg);
    max-width: 500px;
    /* Match package card width */
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
}

/* Visual/Logo Left */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.hero-logo {
    max-width: 100%;
    width: 70%;
    /* Reduced from 90% */
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    background-color: var(--logo-bg);
    padding: 30px;
    /* Reduced padding */
    border-radius: var(--logo-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 2rem;
    /* Reduced space */
}

.hero-logo:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.15);
}

.package-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.package-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-glow);
    margin-bottom: 0;
    max-width: 500px;
    transition: transform 0.3s;
    cursor: pointer;
    /* Ensure entire card shows pointer */
}

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

.package-header {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: var(--spacing-md);
}

.package-list {
    text-align: left;
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2-column layout for compactness */
    gap: 10px;
}

.package-list li {
    margin-bottom: 0;
    color: var(--text-color);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Buttons - Standardized Sizing */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    /* Default: Medium size */
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* Button Sizes */
.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.25rem;
}

/* Button Variants */
.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--secondary);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.25rem;
}

.page-header h1 {
    font-size: 3.5rem;
}

/* Cards */
.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Service Card with Price */
.logo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    width: fit-content;
    margin: 1rem 0;
    border: 1px solid var(--primary);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* Features */
.icon-box {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

/* Pricing */
.pricing-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin: var(--spacing-md) 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.pricing-features {
    margin: 2rem 0;
    flex-grow: 1;
    text-align: left;
    list-style: none;
}

.pricing-features li {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.4;
}

.pricing-features li .check {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-footer {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.hosting-note {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

/* Portfolio / Testimonials Replacement */
.portfolio-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.portfolio-link {
    display: block;
    overflow: hidden;
    flex-grow: 1;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.portfolio-link:hover .portfolio-img {
    transform: scale(1.03);
}

.browser-window {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    /* Responsive Aspect Ratio */
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 768px) {
    .browser-window {
        aspect-ratio: auto;
        height: auto;
    }
}

/* Browser Bar Removed */


.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Show top of site */
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
    .portfolio-img {
        height: auto;
        position: relative;
    }
}

.portfolio-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.portfolio-description {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.portfolio-outcomes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.outcome-badge {
    background: rgba(244, 129, 0, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(244, 129, 0, 0.2);
}

.external-icon {
    font-size: 0.8em;
    margin-left: 4px;
}

/* Logo Cloud / Past Customers */
.past-customers {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    opacity: 0.7;
}

.logo-item {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

[data-theme="dark"] .logo-item {
    color: var(--heading-color);
    /* More contrast in dark mode */
}

.logo-item:hover {
    opacity: 1 !important;
    color: var(--primary);
    cursor: default;
    filter: grayscale(0%) !important;
}

/* About Page Styling */
.about-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.values-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.values-list li {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.team-member {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.team-member .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.team-member .fun-fact {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    opacity: 0.9;
}

.experience-highlight {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.experience-highlight h2 {
    margin-bottom: 2rem;
}

.experience-highlight p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: var(--hero-gradient);
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-glow);
    color: #ffffff;
}

.about-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-cta .btn-primary {
    background: #ffffff;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

/* Contact Page Styling */
.contact-info {
    padding-right: 0;
    /* Remove padding as it is now inside wrapper */
    margin-bottom: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.info-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.info-item strong {
    display: block;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item a,
.info-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.info-item a:hover {
    color: var(--primary);
}

/* Callback Section */
.callback-section {
    padding: 2.5rem;
    margin-top: 0;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(244, 129, 0, 0.03) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md), 0 0 30px rgba(244, 129, 0, 0.1);
    position: relative;
}

[data-theme="dark"] .callback-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(244, 129, 0, 0.05) 100%);
    box-shadow: var(--shadow-md), 0 0 30px rgba(244, 129, 0, 0.15);
}

.callback-section h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--heading-color);
    font-weight: 800;
}

.callback-section p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

/* Secondary Contact Form Styling */
.contact-form-container {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.contact-form-container:hover {
    opacity: 1;
}

.contact-form-container .btn-primary {
    background: var(--secondary);
}

.contact-form-container .btn-primary:hover {
    background: var(--text-color);
}

.contact-left-col h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contact-left-col p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Contact Section Divider */
.contact-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 3rem 0;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.contact-divider span {
    padding: 0 1.5rem;
}

/* Horizontal Grid for Callback Form */
.callback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.callback-grid .form-group {
    margin-bottom: 0;
}

/* Time preference spans 1 column, Email spans 2 columns on large screens, Submit spans 1 column */
.email-group {
    grid-column: span 2;
}

.submit-group {
    grid-column: span 1;
    display: flex;
    align-items: flex-end;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .callback-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .email-group {
        grid-column: span 2;
    }

    .submit-group {
        grid-column: span 2;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .callback-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .callback-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    #callbackSubmitBtn {
        margin-top: 0 !important;
    }
}

.callback-success-msg {
    background: #ecfdf5;
    color: #065f46;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid #10b981;
    margin-bottom: 1.5rem;
    text-align: center;
}

.callback-success-msg h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .callback-success-msg {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

[data-theme="dark"] .callback-success-msg h3 {
    color: #10b981;
}

.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--card-bg);
    /* Match inputs */
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2344403c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

[data-theme="dark"] .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Contact Form */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    opacity: 0.8;
    cursor: wait;
    pointer-events: none;
}

/* Footer */
.site-footer {
    background: var(--nav-bg);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
    margin-top: var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* Footer Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.footer-social-proof {
    margin-top: 0.5rem;
}

.trust-badge {
    display: inline-block;
    background: rgba(244, 129, 0, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary);
}

/* Footer Contact Column */
.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-phone a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
}

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

.footer-email a {
    color: var(--text-color);
    word-break: break-all;
}

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

.footer-location {
    color: var(--secondary);
    font-size: 0.9rem;
}

.footer-cta {
    margin-top: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--secondary);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    color: var(--secondary);
    transition: color 0.2s;
}

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

.footer-bottom-links .separator {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        height: 80px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-nav ul {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 0 var(--spacing-md);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
        display: flex;
    }

    .main-nav.open ul {
        max-height: 500px;
        opacity: 1;
        padding: var(--spacing-md);
    }

    /* Increase mobile link targets (thumb zone) */
    .main-nav ul li a {
        display: block;
        padding: 8px 0;
        /* Reduced from 15px */
        font-size: 1.1rem;
    }

    .nav-contact-btn {
        display: none;
    }

    .main-nav.open .nav-contact-btn {
        display: flex;
        margin-top: var(--spacing-sm);
        justify-content: center;
        width: 100%;
        /* Full width buttons for easy tap */
        padding: 12px;
    }

    .nav-contact-btn.icon-only {
        border-radius: var(--radius-pill);
        padding: 12px;
    }

    .nav-contact-btn.icon-only .btn-text {
        display: inline;
        /* Show text on mobile */
    }

    .sticky-cta {
        display: grid;
    }

    body {
        padding-bottom: 80px;
        /* Space for sticky cta */
    }

    .nav-logo {
        height: 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Move logo to top on mobile and center it */
    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-lg);
        align-items: center;
        /* Center logo horizontally */
    }

    .hero-content {
        text-align: center;
        /* Center text */
    }

    .hero h1 {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .site-footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
}

@media (max-width: 400px) {
    /* Stack buttons handled by flex-column default */
}

/* Trusted Grid Styles */
.home-ticker {
    padding: 40px 0;
    background: transparent;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: 20px 0;
}

.trusted-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.trusted-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .trusted-item {
    color: var(--heading-color);
    background: var(--card-bg);
}

/* Package Promo Styles */
.package-promo {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: bold;
    margin-top: 5px;
}

.package-fine-print {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 5px;
}


/* Comparison Table */
.comparison-section {
    padding-top: 20px;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background: var(--card-bg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--bg-color);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-col {
    width: 60%;
    color: var(--heading-color);
    font-weight: 500;
}

.comparison-table .check-col {
    width: 40%;
    text-align: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.01);
}

[data-theme="dark"] .comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: """;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -10px;
    font-family: var(--font-heading);
    font-weight: 800;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 700;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--secondary);
    display: block;
}

/* Utility Classes for Inline Styles */
.grid-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.full-width {
    width: 100%;
}

.btn-full {
    width: 100%;
}

.section-header-spaced {
    margin-bottom: 30px;
    margin-top: 60px;
}

.logo-item-sm,
.logo-item-md,
.logo-item-xs {
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 8px 12px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.logo-item-sm {
    height: 50px;
}

.logo-item-md {
    height: 60px;
}

.logo-item-xs {
    height: 40px;
}

.logo-item-sm:hover,
.logo-item-md:hover,
.logo-item-xs:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.subtitle-small {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.callback-section-spaced {
    margin-bottom: 3rem;
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 100%;
}

.hidden {
    display: none;
}

.form-submit-spaced {
    width: 100%;
    margin-top: 1.8rem;
}

/* Hero Image Rotator */
.hero-image-rotator {
    position: relative;
    width: 90%;
    max-width: 450px;
    margin-bottom: 2rem;
    flex-grow: 1;
    aspect-ratio: 4/3;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    background-color: var(--logo-bg);
    padding: 8px;
    border-radius: var(--logo-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.05);
}

.hero-image-active {
    opacity: 1;
}

[data-theme="dark"] .hero-image {
    background-color: #f5f5f4;
}

@media (max-width: 768px) {
    .hero-image-rotator {
        width: 95%;
    }
}

/* Unified Services Section */
.services-unified-grid {
    gap: var(--spacing-md);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.service-header h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--heading-color);
}

.service-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--accent);
    white-space: nowrap;
}

.service-price {
    background: rgba(244, 129, 0, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
}

.service-cta {
    background: linear-gradient(135deg, rgba(244, 129, 0, 0.05) 0%, rgba(244, 129, 0, 0.1) 100%);
    border-color: var(--primary);
    text-align: center;
    justify-content: center;
}

.service-cta h3 {
    color: var(--heading-color);
    margin-bottom: var(--spacing-xs);
}

.service-cta p {
    margin-bottom: var(--spacing-md);
}

/* Micro-interactions */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn, .nav-contact-btn, .theme-toggle {
    position: relative;
    overflow: hidden;
}

/* Form input micro-interactions */
.form-group {
    transition: transform 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: scale(1.01);
}