/*
 * Restorestrength Main Stylesheet
 * Digital Ecosystem Architecture
 */

:root {
    /* Core brand colors */
    --restorestrength-primary: #1E3A8A;
    --restorestrength-primary-light: #2B4BA8;
    --restorestrength-primary-dark: #152A69;
    --restorestrength-accent: #22D3EE;
    --restorestrength-accent-light: #3BDDF5;
    --restorestrength-accent-dark: #15B8D1;
    --restorestrength-bg: #f0f4f8;
    --restorestrength-white: #F9FAFB;
    --restorestrength-dark: #0F172A;

    /* Extended palette */
    --restorestrength-gray-100: #F3F4F6;
    --restorestrength-gray-200: #E5E7EB;
    --restorestrength-gray-300: #D1D5DB;
    --restorestrength-gray-400: #9CA3AF;
    --restorestrength-gray-500: #6B7280;
    --restorestrength-gray-600: #4B5563;
    --restorestrength-gray-700: #374151;
    --restorestrength-gray-800: #1F2937;
    --restorestrength-gray-900: #111827;

    /* Typography */
    --restorestrength-font-primary: 'Outfit', sans-serif;
    --restorestrength-font-heading: 'Space Grotesk', sans-serif;

    /* Spacing */
    --restorestrength-space-xs: 0.25rem;
    --restorestrength-space-sm: 0.5rem;
    --restorestrength-space-md: 1rem;
    --restorestrength-space-lg: 2rem;
    --restorestrength-space-xl: 4rem;
    --restorestrength-space-xxl: 8rem;

    /* Borders */
    --restorestrength-radius-sm: 0.25rem;
    --restorestrength-radius-md: 0.5rem;
    --restorestrength-radius-lg: 1rem;
    --restorestrength-radius-xl: 2rem;
    --restorestrength-radius-full: 9999px;

    /* Shadows */
    --restorestrength-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --restorestrength-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --restorestrength-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --restorestrength-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --restorestrength-transition-fast: 0.15s ease;
    --restorestrength-transition-normal: 0.3s ease;
    --restorestrength-transition-slow: 0.5s ease;

    /* Z-index layers */
    --restorestrength-z-background: -1;
    --restorestrength-z-default: 1;
    --restorestrength-z-header: 100;
    --restorestrength-z-overlay: 200;
    --restorestrength-z-modal: 300;
    --restorestrength-z-popover: 400;
    --restorestrength-z-tooltip: 500;
}

/* ---------- Reset & Base Styles ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--restorestrength-font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--restorestrength-gray-800);
    background-color: var(--restorestrength-bg);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--restorestrength-transition-normal);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

/* ---------- Background Canvas ---------- */
.restorestrength-background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--restorestrength-z-background);
    opacity: 0.3;
    pointer-events: none;
}

/* ---------- Layout & Container ---------- */
.restorestrength-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--restorestrength-space-md);
}

/* ---------- Typography Styles ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--restorestrength-font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--restorestrength-space-md);
    color: var(--restorestrength-gray-900);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--restorestrength-space-md);
    max-width: 65ch;
}

/* ---------- Header & Navigation ---------- */
.restorestrength-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: var(--restorestrength-z-header);
    padding: var(--restorestrength-space-md) 0;
    transition: transform var(--restorestrength-transition-normal),
    background-color var(--restorestrength-transition-normal),
    box-shadow var(--restorestrength-transition-normal);
    background-color: rgba(240, 244, 248, 0.85);
    backdrop-filter: blur(8px);
}

.restorestrength-header.scrolled {
    box-shadow: var(--restorestrength-shadow-md);
    background-color: rgba(240, 244, 248, 0.95);
}

.restorestrength-header.hidden {
    transform: translateY(-100%);
}

.restorestrength-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.restorestrength-logo {
    display: flex;
    align-items: center;
    font-family: var(--restorestrength-font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--restorestrength-primary);
    letter-spacing: -0.02em;
    position: relative;
    z-index: var(--restorestrength-z-header);
}

.restorestrength-logo-text {
    position: relative;
    display: inline-block;
}

.restorestrength-logo-highlight {
    color: var(--restorestrength-accent);
    display: inline-block;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Desktop Navigation */
.restorestrength-nav-desktop {
    display: none;
}

.restorestrength-nav-desktop ul {
    display: flex;
    gap: var(--restorestrength-space-lg);
}

.restorestrength-nav-desktop a {
    position: relative;
    color: var(--restorestrength-gray-700);
    font-weight: 500;
    padding: var(--restorestrength-space-xs) 0;
}

.restorestrength-nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--restorestrength-accent);
    transition: width var(--restorestrength-transition-normal);
}

.restorestrength-nav-desktop a:hover,
.restorestrength-nav-desktop a.restorestrength-active {
    color: var(--restorestrength-primary);
}

.restorestrength-nav-desktop a:hover::after,
.restorestrength-nav-desktop a.restorestrength-active::after {
    width: 100%;
}

/* Mobile Navigation */
.restorestrength-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: var(--restorestrength-z-header);
}

.restorestrength-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--restorestrength-primary);
    transform-origin: center;
    transition: transform var(--restorestrength-transition-normal),
    opacity var(--restorestrength-transition-normal);
}

.restorestrength-menu-open .restorestrength-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.restorestrength-menu-open .restorestrength-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.restorestrength-menu-open .restorestrength-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.restorestrength-nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: calc(var(--restorestrength-z-header) - 1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--restorestrength-transition-normal),
    visibility var(--restorestrength-transition-normal);
}

.restorestrength-menu-open .restorestrength-nav-mobile {
    opacity: 1;
    visibility: visible;
}

.restorestrength-nav-mobile-inner {
    text-align: center;
}

.restorestrength-nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: var(--restorestrength-space-xl);
}

.restorestrength-nav-mobile a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--restorestrength-white);
    position: relative;
    display: inline-block;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: transform var(--restorestrength-transition-slow),
    opacity var(--restorestrength-transition-slow);
}

.restorestrength-menu-open .restorestrength-nav-mobile a {
    transform: translateY(0);
    opacity: 1;
}

.restorestrength-menu-open .restorestrength-nav-mobile li:nth-child(1) a { transition-delay: 0.1s; }
.restorestrength-menu-open .restorestrength-nav-mobile li:nth-child(2) a { transition-delay: 0.2s; }
.restorestrength-menu-open .restorestrength-nav-mobile li:nth-child(3) a { transition-delay: 0.3s; }
.restorestrength-menu-open .restorestrength-nav-mobile li:nth-child(4) a { transition-delay: 0.4s; }

.restorestrength-nav-mobile a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--restorestrength-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--restorestrength-transition-normal);
}

.restorestrength-nav-mobile a:hover::after,
.restorestrength-nav-mobile a.restorestrength-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ---------- Cookie Consent Popup ---------- */
.restorestrength-cookie-popup {
    position: fixed;
    bottom: var(--restorestrength-space-md);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 2rem);
    max-width: 400px;
    background-color: var(--restorestrength-white);
    border-radius: var(--restorestrength-radius-md);
    box-shadow: var(--restorestrength-shadow-xl);
    z-index: var(--restorestrength-z-modal);
    padding: var(--restorestrength-space-lg);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--restorestrength-transition-normal),
    opacity var(--restorestrength-transition-normal),
    visibility var(--restorestrength-transition-normal);
}

.restorestrength-cookie-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.restorestrength-cookie-content h3 {
    margin-bottom: var(--restorestrength-space-sm);
    font-size: 1.25rem;
}

.restorestrength-cookie-content p {
    font-size: 0.9rem;
    margin-bottom: var(--restorestrength-space-md);
}

.restorestrength-cookie-buttons {
    display: flex;
    gap: var(--restorestrength-space-sm);
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.restorestrength-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--restorestrength-radius-md);
    font-weight: 500;
    transition: all var(--restorestrength-transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.restorestrength-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform var(--restorestrength-transition-normal);
    z-index: -1;
}

.restorestrength-btn:hover::before {
    transform: translateY(0);
}

.restorestrength-btn i {
    margin-left: 0.5rem;
    transition: transform var(--restorestrength-transition-normal);
}

.restorestrength-btn:hover i {
    transform: translateX(4px);
}

.restorestrength-btn-primary {
    background-color: var(--restorestrength-primary);
    color: var(--restorestrength-white);
}

.restorestrength-btn-primary:hover {
    background-color: var(--restorestrength-primary-dark);
    box-shadow: var(--restorestrength-shadow-md);
}

.restorestrength-btn-secondary {
    background-color: transparent;
    color: var(--restorestrength-primary);
    border: 2px solid var(--restorestrength-primary);
}

.restorestrength-btn-secondary:hover {
    background-color: var(--restorestrength-primary);
    color: var(--restorestrength-white);
    box-shadow: var(--restorestrength-shadow-md);
}

.restorestrength-btn-light {
    background-color: var(--restorestrength-white);
    color: var(--restorestrength-primary);
}

.restorestrength-btn-light:hover {
    background-color: var(--restorestrength-gray-100);
    box-shadow: var(--restorestrength-shadow-md);
}

/* ---------- Hero Section ---------- */
.restorestrength-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--restorestrength-space-xl) * 2) 0 var(--restorestrength-space-xl);
    background: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.restorestrength-hero-content {
    position: relative;
    z-index: var(--restorestrength-z-default);
    width: 100%;
}

.restorestrength-hero-title {
    margin-bottom: var(--restorestrength-space-lg);
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

.restorestrength-hero-title span {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    animation: revealText 0.8s forwards;
}

.restorestrength-hero-title span:nth-child(1) { animation-delay: 0.1s; }
.restorestrength-hero-title span:nth-child(2) { animation-delay: 0.2s; }
.restorestrength-hero-title span:nth-child(3) { animation-delay: 0.3s; }
.restorestrength-hero-title span:nth-child(4) { animation-delay: 0.4s; }

@keyframes revealText {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.restorestrength-hero-subtitle {
    max-width: 600px;
    margin-bottom: var(--restorestrength-space-lg);
    font-size: 1.2rem;
    color: var(--restorestrength-gray-600);
}

.restorestrength-hero-buttons {
    display: flex;
    gap: var(--restorestrength-space-md);
    flex-wrap: wrap;
}

.restorestrength-hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.restorestrength-shape {
    position: absolute;
    border-radius: var(--restorestrength-radius-full);
    opacity: 0.1;
    filter: blur(60px);
    animation: float 10s infinite alternate ease-in-out;
}

.restorestrength-shape-1 {
    width: 500px;
    height: 500px;
    background-color: var(--restorestrength-primary);
    top: -100px;
    right: -200px;
    animation-delay: 0s;
}

.restorestrength-shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--restorestrength-accent);
    bottom: 50px;
    right: 20%;
    animation-delay: 2s;
}

.restorestrength-shape-3 {
    width: 400px;
    height: 400px;
    background-color: var(--restorestrength-primary-light);
    bottom: -100px;
    left: -100px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* ---------- Section Styling ---------- */
section {
    padding: var(--restorestrength-space-xl) 0;
    position: relative;
}

.restorestrength-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--restorestrength-space-xl);
}

.restorestrength-section-header p {
    margin: 0 auto;
    color: var(--restorestrength-gray-600);
}

/* ---------- Services Overview Section ---------- */
.restorestrength-services-overview {
    background-color: var(--restorestrength-white);
    position: relative;
    z-index: 1;
}

.restorestrength-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--restorestrength-space-lg);
}

.restorestrength-service-card {
    background-color: var(--restorestrength-bg);
    border-radius: var(--restorestrength-radius-md);
    padding: var(--restorestrength-space-lg);
    box-shadow: var(--restorestrength-shadow-sm);
    transition: transform var(--restorestrength-transition-normal),
    box-shadow var(--restorestrength-transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.restorestrength-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--restorestrength-primary), var(--restorestrength-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--restorestrength-transition-normal);
}

.restorestrength-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--restorestrength-shadow-lg);
}

.restorestrength-service-card:hover::before {
    transform: scaleX(1);
}

.restorestrength-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: var(--restorestrength-radius-full);
    margin-bottom: var(--restorestrength-space-md);
    font-size: 1.5rem;
    color: var(--restorestrength-primary);
    transition: background-color var(--restorestrength-transition-normal),
    color var(--restorestrength-transition-normal);
}

.restorestrength-service-card:hover .restorestrength-service-icon {
    background-color: var(--restorestrength-primary);
    color: var(--restorestrength-white);
}

.restorestrength-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--restorestrength-space-sm);
}

.restorestrength-service-card p {
    color: var(--restorestrength-gray-600);
    margin-bottom: var(--restorestrength-space-md);
    flex-grow: 1;
}

.restorestrength-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--restorestrength-primary);
    font-weight: 600;
    margin-top: auto;
}

.restorestrength-card-link i {
    margin-left: var(--restorestrength-space-xs);
    transition: transform var(--restorestrength-transition-normal);
}

.restorestrength-card-link:hover i {
    transform: translateX(4px);
}

/* ---------- Work Process Section ---------- */
.restorestrength-process {
    background-color: var(--restorestrength-bg);
    position: relative;
    overflow: hidden;
}

.restorestrength-process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--restorestrength-space-lg);
    position: relative;
}

.restorestrength-process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background-color: var(--restorestrength-gray-300);
    z-index: 0;
}

.restorestrength-process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--restorestrength-space-md);
    position: relative;
    z-index: 1;
}

.restorestrength-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--restorestrength-primary);
    color: var(--restorestrength-white);
    border-radius: var(--restorestrength-radius-full);
    font-family: var(--restorestrength-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--restorestrength-shadow-md);
}

.restorestrength-process-content {
    padding-top: var(--restorestrength-space-xs);
}

.restorestrength-process-content h3 {
    margin-bottom: var(--restorestrength-space-xs);
}

.restorestrength-process-content p {
    color: var(--restorestrength-gray-600);
}

/* ---------- Featured Projects Section ---------- */
.restorestrength-featured {
    background-color: var(--restorestrength-white);
    position: relative;
}

.restorestrength-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--restorestrength-space-lg);
    margin-bottom: var(--restorestrength-space-xl);
}

.restorestrength-project-card {
    border-radius: var(--restorestrength-radius-md);
    overflow: hidden;
    box-shadow: var(--restorestrength-shadow-md);
    transition: transform var(--restorestrength-transition-normal),
    box-shadow var(--restorestrength-transition-normal);
}

.restorestrength-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--restorestrength-shadow-xl);
}

.restorestrength-project-image {
    position: relative;
    overflow: hidden;
}

.restorestrength-project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--restorestrength-transition-normal);
}

.restorestrength-project-card:hover .restorestrength-project-image img {
    transform: scale(1.05);
}

.restorestrength-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--restorestrength-transition-normal);
}

.restorestrength-project-card:hover .restorestrength-project-overlay {
    opacity: 1;
}

.restorestrength-project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--restorestrength-white);
    border-radius: var(--restorestrength-radius-full);
    color: var(--restorestrength-primary);
    font-size: 1.25rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform var(--restorestrength-transition-normal),
    opacity var(--restorestrength-transition-normal);
}

.restorestrength-project-card:hover .restorestrength-project-link {
    transform: translateY(0);
    opacity: 1;
}

.restorestrength-project-info {
    padding: var(--restorestrength-space-md);
    background-color: var(--restorestrength-white);
}

.restorestrength-project-info h3 {
    margin-bottom: var(--restorestrength-space-xs);
    font-size: 1.25rem;
}

.restorestrength-project-info p {
    color: var(--restorestrength-gray-600);
    margin-bottom: var(--restorestrength-space-sm);
    font-size: 0.9rem;
}

.restorestrength-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--restorestrength-space-xs);
}

.restorestrength-project-tags span {
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--restorestrength-primary);
    border-radius: var(--restorestrength-radius-full);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.restorestrength-featured-cta {
    text-align: center;
}

/* ---------- Testimonials Section ---------- */
.restorestrength-testimonials {
    background-color: var(--restorestrength-bg);
    position: relative;
    overflow: hidden;
}

.restorestrength-testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--restorestrength-space-lg);
}

.restorestrength-testimonial {
    background-color: var(--restorestrength-white);
    border-radius: var(--restorestrength-radius-md);
    padding: var(--restorestrength-space-lg);
    box-shadow: var(--restorestrength-shadow-md);
    transition: transform var(--restorestrength-transition-normal),
    box-shadow var(--restorestrength-transition-normal);
    position: relative;
    overflow: hidden;
}

.restorestrength-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--restorestrength-primary), var(--restorestrength-accent));
}

.restorestrength-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--restorestrength-shadow-lg);
}

.restorestrength-testimonial-content {
    position: relative;
    margin-bottom: var(--restorestrength-space-md);
}

.restorestrength-testimonial-content i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: rgba(30, 58, 138, 0.1);
    transform: translateY(-50%);
}

.restorestrength-testimonial-content p {
    color: var(--restorestrength-gray-700);
    margin-bottom: 0;
    font-style: italic;
}

.restorestrength-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--restorestrength-space-md);
}

.restorestrength-testimonial-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
}

.restorestrength-testimonial-info p {
    margin-bottom: 0;
    color: var(--restorestrength-gray-500);
    font-size: 0.875rem;
}

/* ---------- CTA Section ---------- */
.restorestrength-cta {
    background: linear-gradient(135deg, var(--restorestrength-primary-dark), var(--restorestrength-primary));
    color: var(--restorestrength-white);
    position: relative;
    overflow: hidden;
}

.restorestrength-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,144C384,128,480,64,576,69.3C672,75,768,149,864,160C960,171,1056,117,1152,96C1248,75,1344,85,1392,90.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    z-index: 0;
}

.restorestrength-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.restorestrength-cta-content h2 {
    color: var(--restorestrength-white);
    margin-bottom: var(--restorestrength-space-md);
}

.restorestrength-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--restorestrength-space-lg);
}

/* ---------- Footer ---------- */
.restorestrength-footer {
    background-color: var(--restorestrength-gray-900);
    color: var(--restorestrength-white);
    padding: var(--restorestrength-space-xl) 0 var(--restorestrength-space-md);
    position: relative;
}

.restorestrength-footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--restorestrength-space-xl);
    margin-bottom: var(--restorestrength-space-xl);
}

.restorestrength-footer-logo {
    margin-bottom: var(--restorestrength-space-lg);
}

.restorestrength-footer-logo .restorestrength-logo-text {
    color: var(--restorestrength-white);
    font-size: 1.75rem;
    margin-bottom: var(--restorestrength-space-sm);
}

.restorestrength-footer-logo p {
    color: var(--restorestrength-gray-400);
    max-width: 300px;
}

.restorestrength-footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--restorestrength-space-lg);
}

.restorestrength-footer-section h3 {
    color: var(--restorestrength-white);
    font-size: 1.1rem;
    margin-bottom: var(--restorestrength-space-md);
    position: relative;
    display: inline-block;
}

.restorestrength-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--restorestrength-accent);
}

.restorestrength-footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--restorestrength-space-sm);
}

.restorestrength-footer-section li {
    display: flex;
    align-items: flex-start;
    gap: var(--restorestrength-space-sm);
}

.restorestrength-footer-section i {
    color: var(--restorestrength-accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.restorestrength-footer-section a {
    color: var(--restorestrength-gray-400);
    transition: color var(--restorestrength-transition-normal);
}

.restorestrength-footer-section a:hover {
    color: var(--restorestrength-accent);
}

.restorestrength-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--restorestrength-space-md);
    padding-top: var(--restorestrength-space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.restorestrength-copyright {
    color: var(--restorestrength-gray-500);
    font-size: 0.875rem;
}

.restorestrength-footer-links {
    display: flex;
    gap: var(--restorestrength-space-lg);
    flex-wrap: wrap;
}

.restorestrength-footer-links a {
    color: var(--restorestrength-gray-400);
    font-size: 0.875rem;
    transition: color var(--restorestrength-transition-normal);
}

.restorestrength-footer-links a:hover {
    color: var(--restorestrength-white);
}

/* ---------- Animation Utility Classes ---------- */
[data-animation="reveal"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animation="reveal"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animation="reveal"][data-delay="0.2"].animated {
    transition-delay: 0.2s;
}

[data-animation="reveal"][data-delay="0.4"].animated {
    transition-delay: 0.4s;
}

[data-animation="reveal"][data-delay="0.5"].animated {
    transition-delay: 0.5s;
}

[data-animation="reveal"][data-delay="0.6"].animated {
    transition-delay: 0.6s;
}

[data-animation="reveal"][data-delay="0.8"].animated {
    transition-delay: 0.8s;
}

/* ---------- Media Queries ---------- */
@media (min-width: 576px) {
    .restorestrength-hero-buttons {
        flex-wrap: nowrap;
    }
}

@media (min-width: 768px) {
    .restorestrength-nav-desktop {
        display: block;
    }

    .restorestrength-menu-toggle {
        display: none;
    }

    .restorestrength-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restorestrength-testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .restorestrength-process-steps::before {
        left: 35px;
    }

    .restorestrength-process-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .restorestrength-footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .restorestrength-footer-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .restorestrength-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .restorestrength-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .restorestrength-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restorestrength-process-steps {
        padding-left: var(--restorestrength-space-lg);
    }

    .restorestrength-process-steps::before {
        left: calc(var(--restorestrength-space-lg) + 35px);
    }

    .restorestrength-footer-content {
        grid-template-columns: 1fr 2fr;
    }
}

@media (min-width: 1200px) {
    .restorestrength-footer-info {
        grid-template-columns: repeat(2, 1fr);
        column-gap: var(--restorestrength-space-xxl);
    }
}

html, body {

    overflow-x: hidden;

    width: 100%;

    box-sizing: border-box;

}