/*
Theme Name: Windel Solutions Theme
Theme URI: https://www.windelsolutions.com/
Author: Antigravity
Author URI: https://www.windelsolutions.com/
Description: A premium, corporate light-theme custom agency theme for Windel Solutions. Custom-built from scratch with high-converting layouts, clean borders, professional grid systems, and subtle animations. Styled after modern corporate web standards.
Version: 1.1.2
Text Domain: windel-solutions
*/

/* ----------------------------------------------------
   Imports & Fonts
   ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ----------------------------------------------------
   Design System & Custom Properties
   ---------------------------------------------------- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --accent-navy: #0a2540;
    --accent-orange: #d9531e;
    --accent-light-orange: #fdf2ec;
    --accent-light-blue: #f0f6fc;
    
    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1e40af 100%);
    --gradient-orange: linear-gradient(135deg, #d9531e 0%, #f97316 100%);
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-orange: 0 4px 14px rgba(217, 83, 30, 0.2);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--accent-navy);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

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

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

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

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

/* ----------------------------------------------------
   Buttons & CTAs
   ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: #c24614;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217, 83, 30, 0.3);
}

.btn-secondary {
    background: var(--accent-navy);
    color: #ffffff;
}

.btn-secondary:hover {
    background: #081d33;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-navy);
    border: 1.5px solid var(--accent-navy);
}

.btn-outline:hover {
    background: var(--accent-light-blue);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 4px;
}

/* ----------------------------------------------------
   Header & Sticky Navigation
   ---------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    background: var(--bg-primary);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent-navy);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--accent-navy);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* ----------------------------------------------------
   Hero Section & Proposal Card
   ---------------------------------------------------- */
.hero {
    min-height: calc(100vh - 20px);
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(217, 83, 30, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(10, 37, 64, 0.03) 0%, transparent 50%);
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 0.812rem;
    font-family: var(--font-heading);
    color: var(--accent-orange);
}

.hero-content h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 540px;
    line-height: 1.7;
}

/* Corporate White Card */
.corporate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.proposal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.proposal-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
}

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

.form-input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--text-primary);
    transition: var(--transition-fast);
    font-size: 0.937rem;
}

.form-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(217, 83, 30, 0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* ----------------------------------------------------
   Stats Section
   ---------------------------------------------------- */
.hero-stats {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
}

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

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-navy);
}

.stat-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ----------------------------------------------------
   Services Showcase
   ---------------------------------------------------- */
.section-title-wrapper {
    margin-bottom: 48px;
}

.section-title-wrapper .section-subtitle {
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card.accent-navy {
    border-top: 4px solid var(--accent-navy);
}

.service-card.accent-orange {
    border-top: 4px solid var(--accent-orange);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card.accent-navy:hover {
    border-color: var(--accent-navy);
}

.service-card.accent-orange:hover {
    border-color: var(--accent-orange);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(10, 37, 64, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-navy);
    transition: var(--transition-smooth);
}

.service-icon.orange {
    background: rgba(217, 83, 30, 0.05);
    color: var(--accent-orange);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon {
    background: var(--accent-navy);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
}

.service-card:hover .service-icon.orange {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 83, 30, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

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

.service-link {
    font-weight: 600;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 0.9rem;
}

.service-link span {
    transition: var(--transition-fast);
}

.service-card:hover .service-link span {
    transform: translateX(4px);
}

/* ----------------------------------------------------
   Comparison Section Styles
   ---------------------------------------------------- */
.comparison-section {
    background: #ffffff;
}

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

.comp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.windel-comp-card {
    border-left: 5px solid #10b981; /* Green checkmark theme */
}

.other-comp-card {
    border-left: 5px solid #ef4444; /* Red cross theme */
}

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

.comp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.comp-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-navy);
}

.comp-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-badge.gray {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.comp-list li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.comp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.check-icon {
    color: #10b981;
}

.cross-icon {
    color: #ef4444;
}

/* ----------------------------------------------------
   Growth Partner Process Section Styles
   ---------------------------------------------------- */
.process-section {
    background: #ffffff;
    padding-bottom: 80px;
}

.process-banner-backdrop {
    background: linear-gradient(135deg, var(--accent-navy) 0%, #1e3a5f 100%);
    padding: 80px 0 140px 0;
    text-align: center;
}

.process-heading-text {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.process-cards-container {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

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

.process-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    border-color: var(--accent-orange);
}

.process-card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(217, 83, 30, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: var(--transition-smooth);
}

.process-card-icon-wrapper svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card:hover .process-card-icon-wrapper {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 83, 30, 0.25);
}

.process-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-navy);
    margin: 0;
}

.process-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Process & Comparison */
@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-heading-text {
        font-size: 1.7rem;
    }
}

/* ----------------------------------------------------
   Why Us & Growth Visualizer
   ---------------------------------------------------- */
.diff-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.diff-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-item {
    display: flex;
    gap: 12px;
}

.diff-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-item-icon svg {
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
}

.diff-item-text h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.diff-item-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Chart Visualizer representation */
.diff-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

/* Services Visual Card - Premium Glass & Colorful Hover Styles */
.services-visual-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.services-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(10,37,64,0.02) 0%, transparent 100%);
    pointer-events: none;
}

.services-visual-card.card-accent-orange::before {
    background: linear-gradient(180deg, rgba(217,83,30,0.03) 0%, transparent 100%);
}

.services-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -10px rgba(10,37,64,0.1), 0 8px 10px -6px rgba(10,37,64,0.05);
    border-color: rgba(10,37,64,0.15);
}

.services-visual-card.card-accent-orange:hover {
    border-color: rgba(217,83,30,0.25);
    box-shadow: 0 12px 25px -5px rgba(217,83,30,0.08), 0 8px 10px -6px rgba(217,83,30,0.08);
}

.services-visual-card svg {
    width: 140px;
    height: 140px;
    transition: transform var(--transition-smooth);
}

.services-visual-card:hover svg {
    transform: scale(1.06);
}

/* Responsive adjustments for Services page alternating grid */
@media (max-width: 768px) {
    .services-grid-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    .services-grid-row .services-visual-card {
        order: -1 !important; /* Visual card always on top on mobile */
    }
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.visual-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.visual-badge {
    background: var(--accent-light-orange);
    color: var(--accent-orange);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.visual-chart-row {
    margin-bottom: 20px;
}

.visual-chart-row:last-child {
    margin-bottom: 0;
}

.visual-chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.visual-chart-bar-bg {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.visual-chart-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-orange);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------
   Pricing Page Template Styles
   ---------------------------------------------------- */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pricing-tab-btn {
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.pricing-tab-btn:hover, .pricing-tab-btn.active {
    background: var(--accent-navy);
    color: #ffffff;
    border-color: var(--accent-navy);
    box-shadow: var(--shadow-sm);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    background: linear-gradient(180deg, var(--accent-light-orange) 0%, #ffffff 150px);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
}

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

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

.pricing-header h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    color: var(--accent-navy);
}

.pricing-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    border-radius: 6px;
}

/* ----------------------------------------------------
   FAQ Accordions & Filter Tabs
   ---------------------------------------------------- */
.faq-category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-tab-btn {
    padding: 8px 18px;
    border-radius: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.faq-tab-btn:hover, .faq-tab-btn.active {
    background: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-sm);
}

.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--accent-navy);
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent-orange);
    transition: var(--transition-smooth);
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 0.937rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

/* ----------------------------------------------------
   Contact Page Layout
   ---------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent-light-orange);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.contact-info-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quote-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

/* ----------------------------------------------------
   Testimonials Slider
   ---------------------------------------------------- */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-wrapper {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    width: 500%;
    transition: transform var(--transition-smooth);
}

.testimonial-slide {
    width: 20%;
    flex-shrink: 0;
    padding: 8px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light-blue);
    color: var(--accent-navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-meta .testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-meta .testimonial-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
    width: 20px;
    background: var(--accent-orange);
    border-radius: 4px;
}

/* Testimonial Header Overrides - Make smaller and less wide */
.testimonials-section .section-title-wrapper {
    max-width: 550px;
    margin: 0 auto 32px auto;
}

.testimonials-section .section-title {
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.testimonials-section .section-description {
    font-size: 0.95rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------
   Blog & Post Listing Grid
   ---------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.blog-thumbnail-wrapper {
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-thumbnail-img {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.blog-category {
    background: var(--accent-light-orange);
    color: var(--accent-orange);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card h3 {
    font-size: 1.15rem;
    line-height: 1.35;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding-top: 12px;
}

.blog-read-more span {
    transition: var(--transition-fast);
}

.blog-card:hover .blog-read-more span {
    transform: translateX(3px);
}

/* ----------------------------------------------------
   Single Post Detail Layout
   ---------------------------------------------------- */
.post-detail-header {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 48px;
    background: radial-gradient(circle at 85% 20%, rgba(217,83,30,0.04) 0%, transparent 45%),
                radial-gradient(circle at 15% 85%, rgba(10,37,64,0.03) 0%, transparent 45%),
                var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.post-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(10,37,64,0.02) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.post-breadcrumbs {
    display: flex;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.post-breadcrumbs a:hover {
    color: var(--accent-orange);
}

.post-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--accent-navy);
}

.post-header-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-author-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-navy);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.post-meta-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.post-meta-details span {
    margin-right: 12px;
}

.post-container {
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-top: 12px;
}

.post-content p {
    color: var(--text-secondary);
}

.post-content blockquote {
    border-left: 3px solid var(--accent-orange);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent-navy);
}

.post-content img {
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-post-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.related-post-title:hover {
    color: var(--accent-orange);
}

.related-post-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ----------------------------------------------------
   Footer Area
   ---------------------------------------------------- */
.footer {
    background: var(--accent-navy);
    color: #e2e8f0;
    padding-top: 64px;
    padding-bottom: 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-brand .logo-icon {
    background: #ffffff;
    color: var(--accent-navy);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 700;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--accent-orange);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

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

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-info-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    font-size: 0.812rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ----------------------------------------------------
   Alert Toast Popup
   ---------------------------------------------------- */
.alert-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #ffffff;
    border: 1.5px solid var(--accent-orange);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg), 0 0 15px rgba(217, 83, 30, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(120%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2000;
}

.alert-popup.active {
    transform: translateY(0);
    opacity: 1;
}

.alert-popup-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-light-orange);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-popup-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.alert-popup-text h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--accent-navy);
}

.alert-popup-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ----------------------------------------------------
   Mobile Navigation Controls
   ---------------------------------------------------- */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #ffffff;
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ----------------------------------------------------
   Services Dropdown Menu
   ---------------------------------------------------- */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
    animation: dropdownFade 0.2s ease;
}

.nav-dropdown-menu a.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-dropdown-menu a.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--accent-orange);
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    display: block;
}

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

/* Responsive Dropdown fallback */
@media (max-width: 991px) {
    .nav-dropdown-wrapper {
        display: block;
        width: 100%;
    }
    .nav-dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        margin-top: 0;
        background: transparent;
    }
    .nav-dropdown-menu a.dropdown-item {
        padding: 8px 0;
        color: var(--text-secondary);
    }
}

/* ----------------------------------------------------
   Trustpilot Branding
   ---------------------------------------------------- */
.trustpilot-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
}

.trustpilot-label {
    font-weight: 700;
    color: #1e293b;
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
    background: #00b67a;
    padding: 2px 6px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1;
}

.trustpilot-score {
    font-weight: 700;
    color: #00b67a;
}

.trustpilot-reviews {
    color: var(--text-secondary);
}

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

.verified-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00b67a;
}

.testimonial-growth {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-orange);
    background: var(--accent-light-orange);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

/* ----------------------------------------------------
   Lead Capture Modal Overlay
   ---------------------------------------------------- */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lead-modal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.lead-modal-overlay.active .lead-modal-card {
    transform: translateY(0);
}

.lead-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lead-modal-close:hover {
    color: var(--accent-orange);
}

.lead-modal-header {
    margin-bottom: 24px;
}

.lead-modal-header h3 {
    font-size: 1.5rem;
    color: var(--accent-navy);
    margin-bottom: 8px;
}

.lead-modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .form-group-grid {
        grid-template-columns: 1fr;
    }
}

