/* ============================================
   LincoNest I.T Solutions - Main Stylesheet
   A clean, professional IT services website
   ============================================ */

/* ============================================
   CSS Variables & Theme
   ============================================ */
:root {
    /* Primary Colors - Professional Blue/Teal */
    --primary: #0066CC;
    --primary-dark: #004d99;
    --primary-light: #3399ff;
    --primary-rgb: 0, 102, 204;

    /* Secondary Colors */
    --secondary: #1a1a2e;
    --secondary-light: #2d2d44;

    /* Accent Colors */
    --accent: #00b894;
    --accent-light: #55efc4;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --section-padding-sm: 50px;

    /* Borders & Shadows */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 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.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

/* Launch Banner */
.launch-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    z-index: 1100;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.launch-banner .container {
    width: 100%;
}

.launch-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.launch-banner strong {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.launch-banner a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.launch-banner a:hover {
    color: var(--secondary);
}

@media (max-width: 767.98px) {
    .launch-banner {
        padding: 10px 10px;
    }

    .launch-banner p {
        font-size: 0.8rem;
    }

    .launch-banner strong {
        display: block;
        margin-bottom: 4px;
    }
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(var(--primary-rgb), 0.08);
}

.btn-nav {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--radius);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--gray-800);
    color: var(--gray-800);
}

.btn-outline-dark:hover {
    background: var(--gray-800);
    border-color: var(--gray-800);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-light:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(var(--primary-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.min-vh-hero {
    min-height: calc(100vh - 76px);
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gray-900);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-cta {
    margin-bottom: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-image-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.hero-icon-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-5px);
}

.hero-icon-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.hero-icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 1.25rem;
}

.hero-floating-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-floating-2 {
    bottom: 15%;
    left: 0;
    animation-delay: 1.5s;
}

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

/* ============================================
   Section Styles
   ============================================ */
.section-padding {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-sm) 0;
    }
}

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Service Cards
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.2) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   Pricing Cards
   ============================================ */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    height: 100%;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

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

.pricing-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-billing {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: -10px 0 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-features li i {
    font-size: 1.1rem;
}

.pricing-features li.included i {
    color: var(--success);
}

.pricing-features li.not-included {
    color: var(--gray-400);
}

.pricing-features li.not-included i {
    color: var(--gray-300);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 25px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   CTA Card
   ============================================ */
.cta-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 1px solid var(--gray-200);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 80px 0 60px;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Detail Cards
   ============================================ */
.service-detail-card {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-detail-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-detail-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--gray-700);
}

.service-detail-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.service-detail-visual {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

.visual-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.visual-item i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* ============================================
   Infrastructure Section
   ============================================ */
.infrastructure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.infrastructure-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.infrastructure-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px;
    backdrop-filter: blur(10px);
}

.infrastructure-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.infrastructure-header i {
    font-size: 2rem;
    color: var(--accent-light);
}

.infrastructure-header h4 {
    color: var(--white);
    margin: 0;
}

.infrastructure-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.infrastructure-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.infra-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.infra-feature i {
    color: var(--accent-light);
}

/* ============================================
   Pricing Page Specific
   ============================================ */
.pricing-detailed {
    padding: 40px 35px;
}

.value-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--gray-200);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-text {
    color: var(--gray-600);
}

.value-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--success);
}

.value-highlight i {
    font-size: 1.5rem;
    color: var(--success);
}

.value-highlight span {
    font-weight: 600;
    color: var(--gray-800);
}

.included-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.included-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.included-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.included-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.included-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.project-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.quote-promo-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
}

.quote-promo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-promo-icon i {
    font-size: 2rem;
    color: var(--white);
}

.quote-promo-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.quote-promo-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.quote-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.9);
}

.quote-benefits li i {
    color: var(--accent-light);
}

.quote-promo-card .btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.quote-promo-card .btn:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

/* Accordion Styling */
.accordion-item {
    border: 1px solid var(--gray-200);
    margin-bottom: 10px;
    border-radius: var(--radius) !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--gray-800);
    background: var(--white);
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-body {
    padding: 15px 20px;
    color: var(--gray-600);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-form-subtitle {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.services-checkboxes {
    background: var(--gray-50);
    padding: 15px;
    border-radius: var(--radius);
}

.form-check-inline {
    margin-right: 20px;
    margin-bottom: 8px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.form-success h3 {
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.contact-info-card {
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    padding: 35px;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.contact-info-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.contact-info-content p {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0;
}

.contact-info-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.quick-benefits-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.quick-benefits-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.quick-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.quick-benefits-list li i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   About Page
   ============================================ */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
}

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

.value-item .value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.2) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.value-item .value-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.lincoln-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 25px;
    backdrop-filter: blur(10px);
}

.lincoln-feature i {
    font-size: 1.75rem;
    color: var(--accent-light);
    margin-bottom: 12px;
    display: block;
}

.lincoln-feature h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.lincoln-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.approach-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}

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

.approach-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.approach-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.commitment-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.commitment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.commitment-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--white);
    text-align: center;
}

.commitment-badge i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.commitment-badge span {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

/* ============================================
   404 Page
   ============================================ */
.error-page {
    padding: 120px 0;
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.error-icon i {
    font-size: 3rem;
    color: var(--warning);
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto 30px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
}

.brand-icon-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.text-primary-light {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 991.98px) {
    .hero-image-container {
        display: none;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .cta-card {
        padding: 35px;
        text-align: center;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .service-detail-card {
        padding: 40px 0;
    }

    .contact-form-card {
        padding: 25px;
    }

    .pricing-detailed {
        padding: 30px 25px;
    }

    .infrastructure-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .hero-trust {
        display: none;
    }

    .service-visual-grid {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 4rem;
    }
}

/* ============================================
   IMAGE-HEAVY SECTIONS - New Styles
   ============================================ */

/* Hero Section with Full Background Image */
.hero-section-image {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop') center center / cover no-repeat;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--gray-900);
}

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item:first-child {
    padding-top: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Service Cards with Images */
.service-card-image {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-image:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-card-overlay i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card-body {
    padding: 25px;
}

.service-card-body .service-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card-body .service-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 15px;
}

/* Full Width Image Feature Sections */
.image-feature-section,
.why-section,
.infrastructure-section,
.lincoln-pride-section {
    overflow: hidden;
}

.feature-image-wrapper {
    height: 100%;
    min-height: 500px;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Why Card Compact */
.why-card-compact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.why-card-compact i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}

.why-card-compact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-card-compact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--gray-900);
    font-size: 1rem;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* CTA Section with Image Background */
.cta-image-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1920&h=600&fit=crop') center center / cover no-repeat;
    padding: 100px 0;
}

.cta-image-section .cta-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.cta-image-section .cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-image-section .cta-text {
    font-size: 1.15rem;
}

/* Page Hero with Image */
.page-hero-image {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
}

.page-hero-image .hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
}

/* Service Detail with Images */
.service-detail-row {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-detail-row:last-child {
    border-bottom: none;
}

.service-detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-image.rounded-image {
    border-radius: var(--radius-xl);
}

.service-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.service-detail-badge i {
    font-size: 1.75rem;
    color: var(--primary);
}

/* Mini Feature Cards */
.mini-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mini-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-feature-card i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.mini-feature-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.mini-feature-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* About Page Image Card */
.about-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
}

.overlay-stat {
    display: flex;
    flex-direction: column;
}

.overlay-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.overlay-stat .stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Value Cards with Images */
.value-card-image {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.value-card-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card-img {
    height: 160px;
    overflow: hidden;
}

.value-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.value-card-image:hover .value-card-img img {
    transform: scale(1.1);
}

.value-card-body {
    padding: 25px;
    text-align: center;
}

.value-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 15px;
    position: relative;
    border: 3px solid var(--white);
}

.value-icon-small i {
    font-size: 1.25rem;
    color: var(--primary);
}

.value-card-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Lincoln Stats */
.lincoln-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: var(--radius);
}

.lincoln-stat i {
    font-size: 1.25rem;
    color: var(--accent-light);
}

.lincoln-stat span {
    color: var(--white);
    font-weight: 500;
}

/* Approach Cards with Images */
.approach-card-image {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.approach-card-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-card-image .approach-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.approach-img {
    height: 180px;
    overflow: hidden;
}

.approach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.approach-card-image:hover .approach-img img {
    transform: scale(1.1);
}

.approach-card-image h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 20px 10px;
}

.approach-card-image p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0 20px 20px;
}

/* Commitment Card Large */
.commitment-card-large {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.commitment-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commitment-card-large .commitment-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 30px 30px 0;
}

.commitment-card-large .commitment-list {
    padding: 0 30px 30px;
}

.commitment-card-large .btn {
    margin: 0 30px 30px;
}

/* Responsive Adjustments for Image Sections */
@media (max-width: 991.98px) {
    .feature-content {
        padding: 40px 30px;
    }

    .feature-image-wrapper {
        min-height: 350px;
    }

    .hero-stats-card {
        display: none;
    }

    .commitment-card-large .commitment-title,
    .commitment-card-large .commitment-list,
    .commitment-card-large .btn {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767.98px) {
    .service-card-img {
        height: 180px;
    }

    .feature-image-wrapper {
        min-height: 280px;
    }

    .feature-content {
        padding: 30px 20px;
    }

    .cta-image-section {
        padding: 60px 0;
    }

    .cta-image-section .cta-title {
        font-size: 1.75rem;
    }

    .page-hero-image {
        padding: 100px 0 60px;
    }

    .value-card-img {
        height: 140px;
    }

    .approach-img {
        height: 150px;
    }
}

/* ============================================
   AMAZING HOMEPAGE ENHANCEMENTS
   ============================================ */

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
}

.stat-box {
    text-align: center;
    padding: 15px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-box .stat-number::after {
    content: '+';
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Urgent Support Banner */
.urgent-banner {
    background: #fef3c7;
    padding: 15px 0;
    border-bottom: 2px solid #f59e0b;
}

.urgent-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgent-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgent-text {
    color: #92400e;
    font-size: 1rem;
}

.urgent-text strong {
    color: #78350f;
}

.btn-urgent {
    background: #f59e0b;
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-urgent:hover {
    background: #d97706;
    color: var(--white);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-line {
    position: absolute;
    top: 42px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gray-200);
    z-index: 1;
}

@media (max-width: 767.98px) {
    .process-line {
        display: none;
    }

    .process-step {
        padding: 20px 10px;
        margin-bottom: 20px;
    }
}

/* Interactive Service Cards */
.service-card-interactive {
    position: relative;
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card-front {
    background: var(--white);
    border: 2px solid var(--gray-100);
    text-align: center;
}

.service-card-back {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card-interactive:hover .service-card-front {
    transform: rotateY(-180deg);
}

.service-card-interactive:hover .service-card-back {
    transform: rotateY(0deg);
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-card-front h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card-front p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-card-back h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    width: 100%;
}

.service-card-back ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-card-back ul li::before {
    content: "✓ ";
    color: #34d399;
}

/* Trusted Section */
.trusted-section {
    background: var(--gray-50);
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
}

.logo-placeholder i {
    font-size: 2rem;
}

.logo-placeholder span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Enhanced Testimonials */
.testimonial-card-enhanced {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-card-enhanced.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

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

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-card-enhanced blockquote {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-author-enhanced img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details strong {
    color: var(--gray-900);
    font-size: 1rem;
}

.author-details span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.author-details .location {
    color: var(--primary);
    font-size: 0.8rem;
}

.author-details .location i {
    font-size: 0.75rem;
}

/* Google Reviews Enhanced */
.google-reviews-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.google-logo {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
}

.google-g {
    color: #4285f4;
    font-weight: 700;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-rating .stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.rating-text strong {
    color: var(--gray-900);
    font-size: 1.1rem;
}

/* FAQ Accordion Enhanced */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    padding: 0 25px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Project Section Enhanced */
.project-image-wrapper {
    position: relative;
}

.project-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-badge i {
    font-size: 1.25rem;
    color: var(--primary);
}

.project-badge span {
    font-weight: 600;
    color: var(--gray-800);
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.project-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.project-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.map-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* Final CTA */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-final-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-final h2 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-trust span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-trust i {
    color: #34d399;
    margin-right: 5px;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-call-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.floating-call-btn i {
    font-size: 1.25rem;
}

@media (max-width: 767.98px) {
    .floating-call-btn span {
        display: none;
    }

    .floating-call-btn {
        padding: 18px;
        border-radius: 50%;
    }
}

/* Pricing Note */
.pricing-note {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-note i {
    color: var(--success);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .urgent-inner {
        text-align: center;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .map-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .stat-box .stat-number {
        font-size: 2rem;
    }

    .service-card-interactive {
        height: 250px;
    }

    .trusted-logos {
        gap: 25px;
    }

    .google-reviews-enhanced {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .cta-final h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   FULLSCREEN HERO WITH LINCOLN CATHEDRAL
   ============================================ */

.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-fullscreen .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.6) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(15, 23, 42, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-badge-fullscreen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-fullscreen i {
    color: #60a5fa;
}

.hero-title-fullscreen {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-subtitle-fullscreen {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-fullscreen strong {
    color: var(--white);
    font-weight: 700;
}

.hero-cta-fullscreen {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-cta-fullscreen .btn {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.hero-cta-fullscreen .btn-light {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.hero-cta-fullscreen .btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-fullscreen .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
}

.hero-cta-fullscreen .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-trust-fullscreen {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.trust-item-fullscreen {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item-fullscreen i {
    font-size: 1.25rem;
    color: #60a5fa;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive for fullscreen hero */
@media (max-width: 991.98px) {
    .hero-fullscreen {
        min-height: 100vh;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-trust-fullscreen {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-title-fullscreen {
        font-size: 2.25rem;
    }

    .hero-subtitle-fullscreen {
        font-size: 1rem;
    }

    .hero-subtitle-fullscreen br {
        display: none;
    }

    .hero-cta-fullscreen {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-fullscreen .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-trust-fullscreen {
        flex-direction: column;
        gap: 12px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ============================================
   FRIENDLY LOCAL BUSINESS STYLES
   Warm, approachable, family-run business feel
   ============================================ */

/* Warm Background Color */
.bg-warm {
    background: linear-gradient(135deg, #fef7ed 0%, #fff9f0 100%);
}

/* Friendly Hero Section */
.hero-section-local {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    padding: 80px 0;
}

.hero-badge-local {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title-local {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-local {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-trust-local {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.trust-text strong {
    color: var(--gray-900);
}

.hero-image-local {
    position: relative;
}

.hero-image-local img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-card-local {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-local.card-1 {
    bottom: 20px;
    left: -20px;
}

.hero-card-local.card-2 {
    top: 20px;
    right: -20px;
}

.hero-card-local i {
    font-size: 1.5rem;
    color: var(--success);
}

.hero-card-local span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

/* Local Trust Banner */
.local-trust-banner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    box-shadow: var(--shadow);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.trust-stat i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-stat .stat-info {
    display: flex;
    flex-direction: column;
}

.trust-stat .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.trust-stat .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Friendly Service Cards */
.service-card-friendly {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon-friendly {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-friendly i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card-friendly h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card-friendly p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Friendly Features Section */
.friendly-features {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
}

.friendly-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.friendly-feature:last-child {
    margin-bottom: 0;
}

.feature-icon-circle {
    width: 45px;
    height: 45px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-circle i {
    font-size: 1.25rem;
    color: #166534;
}

.friendly-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.friendly-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Image Collage Layout */
.image-collage {
    position: relative;
    padding: 20px;
}

.collage-main {
    position: relative;
    z-index: 1;
}

.collage-main img {
    width: 85%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.collage-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.collage-secondary img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.collage-badge {
    position: absolute;
    top: 40px;
    right: 60px;
    background: var(--primary);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.collage-badge .badge-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.collage-badge .badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .image-collage {
        max-width: 500px;
        margin: 0 auto;
    }

    .collage-secondary img {
        width: 160px;
        height: 160px;
    }

    .collage-badge {
        top: 20px;
        right: 40px;
        padding: 14px 18px;
    }

    .collage-badge .badge-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .collage-main img {
        width: 100%;
    }

    .collage-secondary {
        right: -10px;
        bottom: -10px;
    }

    .collage-secondary img {
        width: 120px;
        height: 120px;
    }

    .collage-badge {
        top: 10px;
        right: 10px;
        padding: 12px 16px;
    }

    .collage-badge .badge-number {
        font-size: 1.25rem;
    }

    .collage-badge .badge-text {
        font-size: 0.7rem;
    }
}

/* Friendly Pricing Cards */
.pricing-card-friendly {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    height: 100%;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

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

.pricing-popular {
    border-color: var(--primary);
}

.pricing-popular::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-features-friendly {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features-friendly li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features-friendly li:last-child {
    border-bottom: none;
}

.pricing-features-friendly li i {
    color: var(--success);
}

/* Friendly Testimonial Cards */
.testimonial-card-friendly {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-card-friendly .stars {
    margin-bottom: 15px;
}

.testimonial-card-friendly .stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card-friendly blockquote {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-card-friendly .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card-friendly .author-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.testimonial-card-friendly .author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Google Reviews Badge */
.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.google-reviews-badge img {
    height: 24px;
}

.google-reviews-badge .rating {
    display: flex;
    flex-direction: column;
}

.google-reviews-badge .rating strong {
    font-size: 1rem;
    color: var(--gray-900);
}

.google-reviews-badge .rating span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Friendly CTA Section */
.cta-friendly {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.cta-friendly-inner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.cta-friendly h2 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-friendly p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Page Hero Friendly */
.page-hero-friendly {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    padding: 80px 0 60px;
}

.page-hero-friendly .page-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero-friendly .page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-img-friendly {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Service Section Friendly */
.service-section-friendly {
    padding: 40px 0;
}

.service-img-wrapper {
    position: relative;
}

.service-img-friendly {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.service-icon-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-badge i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-includes {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}

.service-includes h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.service-includes li i {
    color: var(--success);
}

.service-divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 40px 0;
}

/* Simple Check List */
.simple-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 1rem;
}

.simple-check-list li i {
    color: var(--primary);
}

/* About Page Friendly Styles */
.about-photo-frame {
    position: relative;
}

.about-photo-frame img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.photo-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.photo-caption i {
    color: var(--primary);
    margin-right: 5px;
}

/* Difference Cards */
.difference-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.difference-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.difference-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.difference-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.difference-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Local Highlights */
.local-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Promise Card */
.promise-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.promise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.promise-icon i {
    font-size: 2.5rem;
    color: #166534;
}

.promise-card h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.promise-list li:last-child {
    border-bottom: none;
}

.promise-list li i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Team Cards Simple */
.team-card-simple {
    text-align: center;
}

.team-card-simple img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.team-card-simple h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card-simple p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Responsive Adjustments for Friendly Styles */
@media (max-width: 991.98px) {
    .hero-section-local {
        padding: 60px 0;
    }

    .hero-card-local {
        display: none;
    }

    .local-trust-banner {
        margin-top: 30px;
    }

    .cta-friendly-inner {
        padding: 30px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-trust-local {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .trust-stat {
        flex: 1;
        min-width: 100%;
    }

    .friendly-features {
        padding: 25px;
    }

    .promise-card {
        padding: 30px 20px;
    }

    .difference-card {
        padding: 25px;
    }

    .team-card-simple img {
        width: 100px;
        height: 100px;
    }
}
