/* =============================================
   FEDTECK Solutions LLC - Main Stylesheet
   Colors: Black (#1a1a1a) & Orange (#f04e23)
   ============================================= */

:root {
    --primary: #f04e23;
    --primary-dark: #d43d15;
    --primary-light: #ff6b45;
    --secondary: #1a1a1a;
    --secondary-light: #2d2d2d;
    --dark: #0d0d0d;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border: #e5e5e5;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 78, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 78, 35, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(240, 78, 35, 0.3);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 95px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.2)) contrast(1.15) brightness(1.1);
    transition: var(--transition);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation: floatSlow 4s ease-in-out infinite;
}

.logo img:hover {
    filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.4)) contrast(1.2) brightness(1.15);
    transform: scale(1.08) translateZ(0);
    animation-play-state: paused;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-nav {
    background: var(--white);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 6px;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e2 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(240, 78, 35, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

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

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.floating-card i {
    color: var(--primary);
    font-size: 20px;
}

.card-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -40px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30px;
    left: 20px;
    animation-delay: 1s;
}

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

/* Partners Section */
.partners {
    background: var(--light-bg);
    padding: 40px 0;
}

.partners-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

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

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--secondary);
}

.partner-logo i {
    font-size: 28px;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    background: rgba(240, 78, 35, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background: var(--white);
}

.approach-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 24px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon i {
    font-size: 32px;
    color: var(--primary);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-light);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-top: 100px;
    border-radius: 2px;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.advantage-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.advantage-card.featured {
    grid-column: span 2;
    background: var(--secondary);
}

.advantage-card.featured h3,
.advantage-card.featured p {
    color: var(--white);
}

.advantage-card.featured .advantage-number {
    color: rgba(255, 255, 255, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 78, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 26px;
    color: var(--primary);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: var(--light-bg);
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--secondary);
}

.services .section-badge {
    background: rgba(240, 78, 35, 0.2);
}

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

.service-card {
    background: var(--secondary-light);
    padding: 35px 25px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--white);
}

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

.solution-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.solution-image {
    height: 200px;
    overflow: hidden;
}

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

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

.solution-content {
    padding: 25px;
}

.solution-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.solution-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.solution-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.pricing .section-badge {
    background: rgba(240, 78, 35, 0.2);
}

.pricing-calculator {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group label i {
    color: var(--primary);
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(240, 78, 35, 0.4);
}

.input-value {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    width: 60px;
    align-self: flex-end;
}

.options-group label:first-child {
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.options-group label:first-child i {
    color: var(--primary);
}

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

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.option-item input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}

.option-item input:checked + .checkmark {
    background: var(--gradient);
    border-color: var(--primary);
}

.option-item input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
}

.result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.result-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.result-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 10px;
}

.amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.result-note {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.result-card .btn {
    margin-bottom: 20px;
}

.result-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hourly Services Interactive */
.hourly-services {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hourly-service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.hourly-service-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

label.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

label.service-header input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

label.service-header .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

label.service-header:hover .checkmark {
    border-color: var(--primary);
}

label.service-header input:checked + .checkmark {
    background: var(--gradient);
    border-color: var(--primary);
}

label.service-header input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 12px;
}

.service-name {
    flex: 1;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

.service-rate {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.hours-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hours-slider label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    white-space: nowrap;
}

.hours-slider input[type="range"] {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.hours-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(240, 78, 35, 0.4);
}

.hours-value {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    min-width: 36px;
    text-align: center;
}

/* Price Breakdown */
.price-breakdown {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 16px;
    margin: 20px 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:first-child {
    color: var(--text-light);
}

.breakdown-item span:last-child {
    color: var(--secondary);
    font-weight: 600;
}

.breakdown-item.onetime span:last-child {
    color: var(--primary);
}

/* Plan Description */
.plan-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: -8px;
    margin-bottom: 16px;
    font-style: italic;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-options .input-group {
    margin-bottom: 0;
}

/* Service Rates Summary Table */
.pricing-rates-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.pricing-rates-summary h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.pricing-rates-summary h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.rates-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.rates-column {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 120px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rates-column:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 78, 35, 0.3);
}

.rates-column h5 {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
    border-bottom: 2px solid rgba(240, 78, 35, 0.3);
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
}

.rates-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rates-column li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    padding: 4px 0;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rates-column li:last-child {
    border-bottom: none;
}

.rates-column li strong {
    color: var(--primary);
    font-weight: 700;
    display: block;
    font-size: 11px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .rates-columns {
        flex-direction: column;
        gap: 8px;
    }
    
    .rates-column {
        flex: 1 1 100%;
    }
    
    .pricing-rates-summary {
        padding: 16px;
    }
    
    .rates-column {
        padding: 12px;
    }
    
    .rates-column h5 {
        font-size: 12px;
    }
    
    .rates-column li {
        font-size: 12px;
        display: flex;
        justify-content: space-between;
        text-align: left;
    }
    
    .rates-column li strong {
        display: inline;
        font-size: 12px;
        margin-top: 0;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-text .label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text a,
.contact-text address {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    font-style: normal;
}

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

.support-box {
    background: var(--secondary);
    padding: 30px;
    border-radius: 16px;
}

.support-box h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-box h4 i {
    color: var(--primary);
}

.support-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.support-box a {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5px;
}

.support-box a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

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

.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 5px;
}

.form-group textarea + label {
    top: 24px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 13px;
    color: var(--primary);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 110px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(240, 78, 35, 0.4)) contrast(1.1) brightness(1.05);
    transition: var(--transition);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    animation: floatSlow 5s ease-in-out infinite;
}

.footer-logo:hover {
    filter: drop-shadow(0 8px 25px rgba(240, 78, 35, 0.6)) contrast(1.15) brightness(1.1);
    transform: scale(1.05);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom .designer-credit {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantage-card.featured {
        grid-column: span 3;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .approach-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-card.featured {
        grid-column: span 2;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-calculator {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu a {
        color: var(--secondary);
    }
    
    .nav-menu a:hover {
        color: var(--primary);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .advantages-grid,
    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card.featured {
        grid-column: span 1;
    }
    
    .options-list {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .pricing-calculator {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* =============================================
   ANIMATIONS - Captivating Effects
   ============================================= */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    50% {
        transform: translateY(-8px);
        text-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(240, 78, 35, 0.3), 0 0 20px rgba(240, 78, 35, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(240, 78, 35, 0.6), 0 0 40px rgba(240, 78, 35, 0.4), 0 0 60px rgba(240, 78, 35, 0.2);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes morphBorder {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(240, 78, 35, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(240, 78, 35, 0.6), 0 0 40px rgba(240, 78, 35, 0.3);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(240, 78, 35, 0.3);
    }
    50% {
        border-color: rgba(240, 78, 35, 0.8);
    }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Staggered Animation Delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* Hero Section Animations */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both, floatText 4s ease-in-out 1.5s infinite;
}

.hero h1 .highlight {
    display: inline-block;
    animation: glowText 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    animation: fadeInUp 0.8s ease-out 0.4s both, floatSlow 5s ease-in-out 2s infinite;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    animation: floatSlow 4s ease-in-out infinite;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats .stat {
    animation: floatSlow 3.5s ease-in-out infinite;
}

.hero-stats .stat:nth-child(1) { animation-delay: 0s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.3s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.6s; }

.hero-visual {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-card {
    animation: floatSlow 4s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(240, 78, 35, 0.2);
}

.hero-card:nth-child(1) { animation-delay: 0s; }
.hero-card:nth-child(2) { animation-delay: 0.7s; }
.hero-card:nth-child(3) { animation-delay: 1.4s; }

/* Floating Section Headers */
.section-header h2 {
    animation: floatText 5s ease-in-out infinite;
}

.section-header h2 .highlight {
    display: inline-block;
    animation: glowText 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    animation: bounceIn 0.6s ease-out, floatSlow 3s ease-in-out 1s infinite;
}

/* Navbar Animation */
.navbar {
    animation: fadeInDown 0.6s ease-out;
}

.nav-menu li {
    animation: fadeInDown 0.5s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu li:nth-child(6) { animation-delay: 0.35s; }

/* Card Hover Effects */
.advantage-card,
.service-card,
.solution-card,
.partner-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.advantage-card:hover,
.service-card:hover,
.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Icon Animations */
.service-icon,
.advantage-card .card-icon,
.step-number {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease;
}

.service-card:hover .service-icon,
.advantage-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.step:hover .step-number {
    transform: scale(1.1);
    animation: pulse 1s ease-in-out infinite;
}

/* Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}

/* Section Header Animations */
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-block;
    animation: bounceIn 0.6s ease-out;
}

/* Form Input Animations */
.form-group input,
.form-group textarea,
.form-group select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--border);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 78, 35, 0.2);
    border-color: var(--primary);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-light);
}

/* Enhanced Contact Form */
.contact-form-wrapper {
    animation: floatSlow 6s ease-in-out infinite;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper:hover {
    box-shadow: 0 35px 100px rgba(240, 78, 35, 0.15);
}

/* Pricing Calculator Animations */
.pricing-calculator {
    animation: scaleIn 0.8s ease-out, floatSlow 8s ease-in-out 1s infinite;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.result-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatSlow 5s ease-in-out infinite;
}

.result-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 60px rgba(240, 78, 35, 0.2);
}

/* Enhanced Card Animations */
.advantage-card {
    animation: floatSlow 5s ease-in-out infinite;
}

.advantage-card:nth-child(1) { animation-delay: 0s; }
.advantage-card:nth-child(2) { animation-delay: 0.4s; }
.advantage-card:nth-child(3) { animation-delay: 0.8s; }
.advantage-card:nth-child(4) { animation-delay: 1.2s; }

.service-card {
    animation: floatSlow 4.5s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.9s; }
.service-card:nth-child(5) { animation-delay: 1.2s; }
.service-card:nth-child(6) { animation-delay: 1.5s; }

.solution-card {
    animation: floatSlow 5.5s ease-in-out infinite;
}

.solution-card:nth-child(1) { animation-delay: 0s; }
.solution-card:nth-child(2) { animation-delay: 0.5s; }
.solution-card:nth-child(3) { animation-delay: 1s; }

/* Glowing Effect on Featured Elements */
.advantage-card.featured,
.btn-primary {
    position: relative;
}

.advantage-card.featured::after,
.btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light), var(--primary-dark), var(--primary));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card.featured:hover::after,
.btn-primary:hover::after {
    opacity: 0.7;
}

.result-price .amount {
    transition: transform 0.3s ease, color 0.3s ease;
}

.result-card:hover .result-price .amount {
    transform: scale(1.1);
    color: var(--primary);
}

/* Slider Thumb Animation */
input[type="range"]::-webkit-slider-thumb {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(240, 78, 35, 0.5);
}

/* Logo Pulse Effect */
.logo img {
    animation: pulse 3s ease-in-out infinite;
}

.logo:hover img {
    animation: none;
    transform: scale(1.05);
}

/* Footer Link Animations */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Icons Animation */
.social-links a {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease,
                color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Partners Section Animation */
.partners-track {
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

/* Approach Steps Animation */
.step {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color 0.3s ease;
}

.step:hover::before {
    border-color: var(--primary);
    animation: borderGlow 1.5s ease-in-out infinite;
}

/* Scroll Indicator Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

/* Loading Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Glowing Border Effect for Featured Items */
.advantage-card.featured {
    animation: glow 2s ease-in-out infinite;
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeInUp 0.5s ease-out;
}

/* Text Reveal Animation */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    animation: fadeInUp 0.6s ease-out both;
}

/* Counter Animation Glow */
.stat-number {
    transition: text-shadow 0.3s ease;
}

.stat-number:hover {
    text-shadow: 0 0 20px rgba(240, 78, 35, 0.5);
}

/* Checkbox Animation */
.option-item input:checked + .checkmark,
label.service-header input:checked + .checkmark {
    animation: bounceIn 0.4s ease-out;
}

/* Mobile Menu Animation */
@media (max-width: 768px) {
    .nav-menu {
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                    opacity 0.3s ease;
    }
    
    .nav-menu.active {
        animation: slideInFromRight 0.4s ease-out;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
