/* Custom CSS Variables */
:root {
    --primary-color: #F58220; /* Orange from Logo */
    --primary-hover: #D9701C; /* Darker Orange */
    --primary-gradient: linear-gradient(to right, #F58220, #A42A28); /* Orange to Red from Logo */
    --secondary-color: #A42A28; /* Red from Logo */
}

/* Navigation Styles */
.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    color: #374151;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-link:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
}

.nav-link.active {
    background-color: #FFF0E1; /* Light Orange */
    color: var(--primary-color);
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    color: #374151;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    transition: all 0.2s;
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background-color: #f9fafb;
}

/* Button Styles */
.btn-primary {
    color: white;
    background-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #FFF0E1; /* Light Orange */
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-cta-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.2s;
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    background-color: #f9fafb;
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    padding: 0.5rem;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}
.scroll-indicator:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
    transform: translateY(0);
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    width: fit-content;
    color: var(--primary-color);
    transition: background-color 0.3s;
}

.service-card:hover .service-icon {
    background-color: #FFF0E1; /* Light Orange */
}

/* Approach Steps */
.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Check Items */
.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

/* Benefit Cards */
.benefit-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-value {
    font-size: 3.75rem; /* text-6xl */
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
}

/* Contact Section Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon:hover {
    background-color: #FFF0E1; /* Light Orange */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.2);
}

/* Form Styles */
.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #374151;
    background-color: white;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
    transform: translateY(-1px);
}

textarea.form-input {
    resize: vertical;
    min-height: 6rem;
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: white;
    position: relative;
    transition: all 0.2s;
    margin-top: 0.125rem;
}

.checkbox-container:hover .checkmark {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 0.375rem;
    top: 0.125rem;
    width: 0.3rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #6b7280;
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s;
}

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

/* Form Validation & Messages */
.error-message {
    display: block;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    animation: slideInFromTop 0.5s ease-out;
}

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

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-input.error {
    border-color: #ef4444 !important;
    background-color: #fef2f2;
}

.form-input.success {
    border-color: #10b981 !important;
    background-color: #f0fdf4;
}

/* Button States */
.btn-primary:active {
    transform: scale(0.98);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    50% { opacity: 0.5; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.animate-spin { animation: spin 1s linear infinite; }

/* =================================
   SCROLL ANIMATIONS
   ================================= */

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
}

.fade-up { transform: translateY(60px); }
.fade-up.animate-in { transform: translateY(0); }

.fade-left { transform: translateX(-60px); }
.fade-left.animate-in { transform: translateX(0); }

.fade-right { transform: translateX(60px); }
.fade-right.animate-in { transform: translateX(0); }

.scale-up { transform: scale(0.8); }
.scale-up.animate-in { transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.counter.counting {
    color: var(--primary-color);
    transform: scale(1.1);
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease-out forwards;
}
.hero-text:nth-child(1) { animation-delay: 0.2s; }
.hero-text:nth-child(2) { animation-delay: 0.4s; }
.hero-text:nth-child(3) { animation-delay: 0.6s; }

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-value::before {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease-out;
}
.benefit-value.animate-shimmer::before {
    transform: translateX(100%);
}

.approach-step.animate-on-scroll {
    transform: translateX(-50px);
    opacity: 0;
}
.approach-step.animate-in {
    transform: translateX(0);
    opacity: 1;
}

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

.parallax-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(45deg, transparent, rgba(245, 130, 32, 0.03), transparent);
    z-index: -1;
}

.loading-bar {
    width: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 2s ease-out;
}
.loading-bar.animate-in {
    width: 100%;
}

.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-tilt {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* =================================
   FAQ & BLOG STYLES
   ================================= */

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.15);
}
.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-right: 1rem;
}
.faq-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.faq-item.active .faq-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(135deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

.blog-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}
.blog-image { position: relative; padding: 1.5rem 1.5rem 0 1.5rem; }
.blog-category {
    position: absolute;
    top: 2rem; left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    font-size: 0.75rem; font-weight: 600;
    padding: 0.375rem 0.75rem; border-radius: 1rem;
    border: 1px solid rgba(245, 130, 32, 0.2);
}
.blog-content { padding: 1.5rem; }
.blog-meta {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 1rem;
    font-size: 0.875rem; color: #6b7280;
}
.blog-title {
    font-size: 1.25rem; font-weight: 700;
    color: #111827; line-height: 1.5;
    margin-bottom: 0.75rem; transition: color 0.3s ease;
}
.blog-card:hover .blog-title { color: var(--primary-color); }
.blog-excerpt {
    color: #6b7280; line-height: 1.6;
    margin-bottom: 1.5rem;
}
.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-author { display: flex; align-items: center; gap: 0.5rem; }
.blog-author-avatar {
    width: 2rem; height: 2rem; background-color: #f3f4f6;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #6b7280;
}
.blog-author-name { font-size: 0.875rem; color: #6b7280; font-weight: 500; }
.blog-read-more {
    color: var(--primary-color); font-weight: 600;
    background: none; border: none;
    transition: all 0.3s ease;
    display:flex;
    align-items: center;
    gap: 0.25rem;
}
.blog-read-more:hover { transform: translateX(4px); }

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll, .scroll-indicator, .btn-primary:disabled,
    .btn-magnetic, .card-tilt, .contact-icon {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .stagger-1, .stagger-2, .stagger-3, .stagger-4, .stagger-5, .stagger-6 {
        transition-delay: 0s !important;
    }
}

