/**
 * ORRIX - Custom Styles
 * Modern Web Hosting Platform - Light Theme with Orange/Red-Orange
 */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #111827;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Semi-transparent sections to show background */
section {
    position: relative;
    z-index: 1;
}

/* Navigation Links */
.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(249, 115, 22, 0.14);
}

.nav-link.active {
    color: #ffffff;
    background-color: rgba(249, 115, 22, 0.18);
    box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.18);
}

/* Mobile Navigation Links */
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background-color: rgba(249, 115, 22, 0.14);
}

.mobile-nav-link.active {
    color: #ffffff;
    background-color: rgba(249, 115, 22, 0.18);
    box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.18);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #f97316, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #f97316, #f43f5e);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Glow Effects */
.glow-primary {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}

.glow-accent {
    box-shadow: 0 0 40px rgba(244, 63, 94, 0.2);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(10px);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes parallax-bg {
    0% {
        transform: scale(1.1) translateY(0);
    }
    100% {
        transform: scale(1.1) translateY(-10%);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.animate-scroll-bounce {
    animation: scroll-bounce 2s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scale-in 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-left {
    animation: slide-in-left 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-right {
    animation: slide-in-right 0.8s ease-out forwards;
    opacity: 0;
}

/* Animation Delays */
.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-500 {
    animation-delay: 0.5s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

.animation-delay-700 {
    animation-delay: 0.7s;
}

.animation-delay-800 {
    animation-delay: 0.8s;
}

/* Hero Background Parallax */
.hero-bg-container {
    overflow: hidden;
    background: #020617;
}

.hero-bg-image {
    inset: -8%;
    transform: translate3d(0, 0, 0) scale(1.14);
    will-change: transform;
}

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Hero Section Enhancements */
.hero-gradient-overlay {
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(255, 187, 139, 0.6) 40%
    );
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

.glass-card-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

/* Text Shadow for Hero */
.hero-text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text-shadow-lg {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Gradient Border Animation */
@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-border-animated {
    position: relative;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #f97316, #f43f5e, #f97316) border-box;
    border: 2px solid transparent;
    background-size: 200% 200%;
    animation: gradient-border 3s ease infinite;
}

/* Floating Particles Effect */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
    .hero-bg-image {
        background-attachment: scroll !important;
        background-position: center center !important;
    }
    
    .animate-fade-in-up,
    .animate-scale-in,
    .animate-slide-in-left,
    .animate-slide-in-right {
        animation-duration: 0.6s;
    }
}

/* Smooth Scroll Behavior for Anchor Links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Section Reveal Animation */
.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Lift Effect */
.card-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-lift:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

.magnetic-btn:active {
    transform: scale(0.98);
}

/* Glow Pulse Animation */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
    }
}

.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Text Reveal Animation */
@keyframes text-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: text-reveal 1s ease-out forwards;
}

/* Background Pan Animation */
@keyframes bg-pan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.bg-pan {
    animation: bg-pan 20s linear infinite;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f97316, #f43f5e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ea580c, #e11d48);
}

/* Selection Styles */
::selection {
    background: rgba(249, 115, 22, 0.3);
    color: #1f2937;
}

/* Form Styles */
input, select, textarea {
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Table Styles */
.table-light {
    width: 100%;
    border-collapse: collapse;
}

.table-light th,
.table-light td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.table-light th {
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.table-light tr:hover {
    background-color: #f9fafb;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.badge-primary {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.badge-accent {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.badge-warning {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: #ffffff;
        color: #000000;
    }
    
    .no-print {
        display: none !important;
    }
}

/* Image Adjustments */
img {
    max-width: 100%;
    height: auto;
}

/* Focus Visible Styles */
:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #f97316;
    color: #ffffff;
    padding: 0.5rem 1rem;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Code Blocks */
code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.875em;
}

pre {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
}

pre code {
    background: none;
    padding: 0;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #f97316;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #6b7280;
    font-style: italic;
}

/* Lists */
ul.styled-list, ol.styled-list {
    list-style: none;
    padding-left: 0;
}

ul.styled-list li, ol.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

ul.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f97316;
}

ol.styled-list li::before {
    content: counter(list-item) '.';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 600;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 2rem 0;
}

/* Icon Container */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.icon-container-sm {
    width: 2rem;
    height: 2rem;
}

.icon-container-lg {
    width: 4rem;
    height: 4rem;
}

/* Status Indicators */
.status-online {
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-offline {
    width: 0.5rem;
    height: 0.5rem;
    background: #ef4444;
    border-radius: 50%;
}

.status-warning {
    width: 0.5rem;
    height: 0.5rem;
    background: #f97316;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Light Theme Specific */
.bg-light-gradient {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #fff1f2 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #f97316, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Styles */
.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Section Backgrounds */
.section-white {
    background: #ffffff;
}

.section-gray {
    background: #f9fafb;
}

.section-gradient {
    background: linear-gradient(135deg, #f97316 0%, #f43f5e 100%);
}

/* Service Tabs Styles */
.service-tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-tab-btn:hover {
    color: #f97316;
    border-color: #fdba74;
    background: #fff7ed;
}

.service-tab-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Service Tab Content */
.service-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.service-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: #fdba74;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f97316;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-more {
    color: #ea580c;
    transform: translateX(4px);
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.service-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.service-modal.active .service-modal-content {
    transform: scale(1) translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.service-modal-close i {
    font-size: 1rem;
}

.service-modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}

.service-modal-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-modal-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.service-modal-body {
    padding: 1.5rem 2rem;
}

.service-modal-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-modal-section {
    margin-bottom: 1.5rem;
}

.service-modal-section:last-child {
    margin-bottom: 0;
}

.service-modal-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.service-modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-features li {
    font-size: 0.875rem;
    color: #4b5563;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.service-modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #f97316;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #ffedd5;
    border-color: #fdba74;
}

.service-modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.service-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.service-modal-btn.primary {
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.service-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.service-modal-btn.secondary {
    background: #f3f4f6;
    color: #4b5563;
}

.service-modal-btn.secondary:hover {
    background: #e5e7eb;
}

/* Responsive Styles for Service Tabs */
@media (max-width: 768px) {
    .service-tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    #service-tabs {
        gap: 0.5rem;
    }
    
    .service-modal-content {
        max-height: 85vh;
        margin: 0.5rem;
    }
    
    .service-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .service-modal-body {
        padding: 1rem 1.5rem;
    }
    
    .service-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .service-modal-btn {
        width: 100%;
    }
    
    .service-modal-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-tab-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.7rem;
    }
    
    .service-tab-btn i {
        display: none;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .service-card-icon i {
        font-size: 1.25rem;
    }
    
    .service-card-title {
        font-size: 1rem;
    }
}

/* ============================================
   PRICING PAGE - SERVICE PACKAGE SYSTEM
   ============================================ */

/* Service Category Cards */
.service-category-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-category-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-category-header:hover {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.service-category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-category-card:hover .service-category-icon {
    transform: scale(1.1);
}

.service-category-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.service-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-category-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-category-base-price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #ffffff;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-category-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(249, 115, 22, 0.08);
    color: #c2410c;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Service Subcategories */
.service-subcategories {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category-card.expanded .service-subcategories {
    max-height: 2000px;
    padding: 1.5rem;
}

.subcategory-section {
    margin-bottom: 1.5rem;
}

.subcategory-section:last-child {
    margin-bottom: 0;
}

.subcategory-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subcategory-title i {
    color: #f97316;
}

/* Package Items */
.package-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-item-card:hover {
    background: #fff7ed;
    border-color: #fdba74;
}

.package-item-card.selected {
    background: #fff7ed;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.package-item-card--extra {
    border-style: dashed;
}

.package-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.package-item-checkbox {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.package-item-card.selected .package-item-checkbox {
    background: linear-gradient(135deg, #f97316, #f43f5e);
    border-color: transparent;
}

.package-item-checkbox i {
    font-size: 0.75rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.package-item-card.selected .package-item-checkbox i {
    opacity: 1;
}

.package-item-details {
    flex: 1;
}

.package-item-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.package-item-desc {
    font-size: 0.8125rem;
    color: #6b7280;
}

.package-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #f97316;
    white-space: nowrap;
}

.package-item-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
}

/* Expand/Collapse Toggle */
.category-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: #f97316;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 1px solid #f3f4f6;
}

.category-toggle:hover {
    background: #fff7ed;
}

.category-toggle i {
    transition: transform 0.3s ease;
}

.service-category-card.expanded .category-toggle i {
    transform: rotate(180deg);
}

/* Package Summary Panel */
.package-summary-panel {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    width: 380px;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 1.5rem 0 0 1.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.package-summary-panel.visible {
    transform: translateY(-50%) translateX(0);
}

.package-summary-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #ffffff;
}

.package-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-summary-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

.package-summary-body {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.summary-item-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.summary-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.summary-item-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.summary-item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f97316;
}

.summary-item-remove {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.summary-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

.package-summary-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.summary-totals {
    margin-bottom: 1rem;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-total-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.summary-total-value {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.summary-total-row.grand-total {
    padding-top: 0.75rem;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.75rem;
}

.summary-total-row.grand-total .summary-total-label {
    font-weight: 600;
    color: #111827;
}

.summary-total-row.grand-total .summary-total-value {
    font-size: 1.25rem;
    color: #f97316;
}

.summary-base-fees .summary-total-label,
.summary-base-fees .summary-total-value {
    color: #7c3aed;
}

.summary-note {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #6b7280;
}

.service-package-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-package-overview-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.96) 100%);
    box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.35);
}

.service-package-overview-card--cta {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(244, 63, 94, 0.08) 100%);
    border-color: rgba(249, 115, 22, 0.18);
}

.service-package-overview-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.875rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(249, 115, 22, 0.1);
    color: #c2410c;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-package-overview-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.service-package-overview-card p {
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-package-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-package-price-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(244, 63, 94, 0.12) 100%);
    color: #c2410c;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-package-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-highlight-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 30px -18px rgba(249, 115, 22, 0.6);
}

.pricing-highlight-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -18px rgba(249, 115, 22, 0.7);
}

/* Service Modal Pricing */
.service-modal-pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-pricing-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-pricing-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.service-pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-pricing-yearly {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.service-pricing-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px -4px rgba(249, 115, 22, 0.5);
}

.service-pricing-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -4px rgba(249, 115, 22, 0.6);
}

/* Mobile submenu styles */
.mobile-submenu .mobile-submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu .mobile-submenu-content:not(.hidden) {
    max-height: 500px;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.billing-option {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}

.billing-option.active {
    color: #f97316;
}

.billing-toggle {
    position: relative;
    width: 3rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-toggle-dot {
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.billing-toggle.yearly .billing-toggle-dot {
    transform: translateX(1.25rem);
}

.billing-discount {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #22c55e;
    background: #dcfce7;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

/* Action Buttons */
.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-clear {
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-clear:hover {
    color: #ef4444;
}

/* Mobile Toggle Button */
.package-summary-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    z-index: 49;
    transition: all 0.3s ease;
    display: none;
}

.package-summary-toggle:hover {
    transform: scale(1.1);
}

.package-summary-toggle .badge-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #ffffff;
    color: #f97316;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles for Pricing */
@media (max-width: 1024px) {
    .service-package-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-summary-panel {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .service-package-overview {
        grid-template-columns: minmax(0, 1fr);
    }

    .package-summary-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: translateY(100%);
        width: 100%;
        max-width: 100%;
        max-height: 70vh;
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .package-summary-panel.visible {
        transform: translateY(0);
    }

    .package-summary-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-category-header {
        padding: 1.5rem;
    }

    .service-category-title {
        font-size: 1.25rem;
    }

    .package-item-card {
        padding: 0.875rem 1rem;
    }

    .package-item-name {
        font-size: 0.875rem;
    }

    .package-item-price {
        font-size: 0.875rem;
    }

    .service-category-tags {
        gap: 0.35rem;
    }
}

/* Price Animation */
@keyframes priceUpdate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #22c55e;
    }
    100% {
        transform: scale(1);
    }
}

.price-updated {
    animation: priceUpdate 0.4s ease;
}

/* Empty State */
.empty-package-state {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
}

.empty-package-state i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-package-state p {
    font-size: 0.875rem;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(244, 63, 94, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 9999px;
    margin-left: 0.5rem;
    white-space: nowrap;
    animation: pulse-badge 2s ease-in-out infinite;
}

.coming-soon-badge i {
    font-size: 0.5rem;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Coming Soon Link Style */
.coming-soon-link {
    position: relative;
    cursor: not-allowed;
}

.coming-soon-link:hover {
    color: inherit;
}

/* Footer Coming Soon */
.footer-link-coming-soon {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-link-coming-soon .coming-soon-badge {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .footer-link-coming-soon .coming-soon-badge {
        position: static;
        transform: none;
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* Social Link Coming Soon */
.social-link-coming-soon {
    position: relative;
    cursor: not-allowed;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-link-coming-soon:hover {
    opacity: 0.9;
}

.social-link-coming-soon::after {
    content: 'Bald verfügbar';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    color: #f97316;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0.25rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.social-link-coming-soon:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Form Coming Soon Notice */
.form-coming-soon-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(244, 63, 94, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-coming-soon-notice i {
    color: #f97316;
    font-size: 1.25rem;
}

.form-coming-soon-notice span {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-coming-soon-notice strong {
    color: #f97316;
}
