/* ========================================
   ABS Abschleppdienst - Custom CSS
   TailwindCSS Additions & Animations
   ======================================== */

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.gradient-card-bg {
    background: linear-gradient(135deg, rgb(20, 20, 34) 0%, rgb(22, 33, 62) 50%, rgb(12, 41, 77) 100%);
}

/* Page Hero Gradient */
.page-hero-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Primary Gradient */
.gradient-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 107, 53, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Bounce Animation */
@keyframes bounce-soft {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bounce-soft {
    animation: bounce-soft 2s infinite;
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service Card Top Border Animation */
.service-card-border {
    position: relative;
    overflow: hidden;
}

.service-card-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-border:hover::before {
    transform: scaleX(1);
}

/* Form Focus Styles */
.form-input-focus {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-focus:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

/* FAQ Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Header Scroll Effect */
.header-scrolled {
    background: #1a1a2e !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Gradient Overlay */
.gradient-overlay {
    position: relative;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.icon-circle-sm {
    width: 50px;
    height: 50px;
}

.icon-circle-lg {
    width: 100px;
    height: 100px;
}

.why-us-image-frame {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem;
}

@media (min-width: 1024px) {
    .why-us-image-frame {
        width: min(100%, 640px);
        aspect-ratio: 16 / 10;
        border-radius: 0;
        clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Process Number */
.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

/* Benefit Item Hover */
.benefit-hover {
    transition: background 0.3s ease, transform 0.3s ease;
}

.benefit-hover:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

/* Testimonial Card */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Partner Logo Hover */
.partner-hover {
    transition: background 0.3s ease;
}

.partner-hover:hover {
    background: #1a1a2e;
}

.partner-hover:hover span {
    color: white;
}

/* Location Card */
.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Error State */
.form-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.ajax-form-message.hidden {
    display: none;
}

.ajax-form-message.is-error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.ajax-form-message.is-success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #15803d;
}

/* Spam Guard */
.spam-guard {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #f9fafb;
}

.spam-guard-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}

.spam-guard-instruction {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

.spam-targets {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.spam-target-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    background: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    font-size: 1.25rem;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.08);
}

.spam-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 107, 53, 0.1);
    color: #c2410c;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.spam-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.spam-choice {
    cursor: pointer;
}

.spam-choice-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0.65rem 0.35rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.9rem;
    background: #ffffff;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spam-choice:hover .spam-choice-card {
    border-color: #fdba74;
    transform: translateY(-1px);
}

.spam-choice-input:checked + .spam-choice-card {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 8px 18px rgba(255, 107, 53, 0.12);
}

.spam-shape-icon {
    font-size: 1.45rem;
    line-height: 1;
    color: #1a1a2e;
    transition: color 0.2s ease, transform 0.2s ease;
}

.spam-choice-input:checked + .spam-choice-card .spam-shape-icon {
    color: #ff6b35;
    transform: scale(1.08);
}

.spam-feedback {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.spam-guard.spam-guard-error {
    border-color: #fecaca;
    background: #fff7f7;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-top-color: #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle-lg {
        width: 80px;
        height: 80px;
    }

    .why-us-image-frame {
        width: 100%;
        max-width: 400px;
        border-radius: 0.75rem;
        clip-path: none;
    }
    
    .process-number {
        font-size: 2rem;
    }
    
    /* Round images become square on mobile and use full width */
    .rounded-full.overflow-hidden.shadow-lg {
        border-radius: 0.5rem !important;
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        aspect-ratio: 4/3 !important;
    }
    
    .rounded-full.overflow-hidden.shadow-lg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .spam-choice-card {
        min-height: 66px;
        padding: 0.55rem 0.25rem;
    }

    .spam-shape-icon {
        font-size: 1.2rem;
    }

    .spam-target-shape {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.1rem;
    }
}

/* Extra Small Screens - Prevent overflow only */
@media (max-width: 456px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
    }
    
    /* Ensure all elements stay within viewport */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Text overflow prevention */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Hero Section - reduce spacing */
    section.min-h-screen {
        min-height: auto !important;
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    
    section.min-h-screen .mb-6 {
        margin-bottom: 1rem !important;
    }
    
    section.min-h-screen .mb-4 {
        margin-bottom: 0.75rem !important;
    }
    
    section.min-h-screen .mb-8 {
        margin-bottom: 1.5rem !important;
    }
    
    section.min-h-screen .mb-10 {
        margin-bottom: 2rem !important;
    }
    
    section.min-h-screen .gap-4 {
        gap: 0.75rem !important;
    }
    
    /* Hero badge - long text */
    .bg-primary\/20 {
        font-size: 0.65rem !important;
        padding: 0.375rem 0.75rem !important;
        letter-spacing: 0.1em !important;
    }
    
    /* Hero title - prevent overflow */
    section.min-h-screen h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    section.min-h-screen h1 span.block.text-primary {
        font-size: 0.875rem !important;
    }
    
    /* Long uppercase headings that may overflow */
    .font-heading.text-3xl,
    .font-heading.text-4xl {
        font-size: 1.5rem !important;
    }
    
    /* Partner names - can be long */
    .partner-hover span {
        font-size: 0.6rem !important;
    }
    
    /* Footer addresses - uppercase long text */
    footer li {
        font-size: 0.7rem !important;
        word-break: break-word;
    }
    
    /* Reduce padding on small screens */
    .max-w-7xl {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    /* Hide scroll indicator on mobile */
    section.min-h-screen .absolute.bottom-8 {
        display: none !important;
    }
}

/* Minimum 320px width support */
@media (max-width: 320px) {
    /* Hero title - further reduce */
    section.min-h-screen h1 {
        font-size: 1.5rem !important;
    }
    
    section.min-h-screen h1 span.block.text-primary {
        font-size: 0.75rem !important;
    }
    
    /* Section headings */
    .font-heading.text-3xl,
    .font-heading.text-4xl {
        font-size: 1.25rem !important;
    }
    
    /* Hero badge */
    .bg-primary\/20 {
        font-size: 0.55rem !important;
        padding: 0.25rem 0.5rem !important;
    }
}

/* Contact Tabs */
.contact-tab {
    background: #f3f4f6;
    color: #1a1a2e;
    border: 2px solid transparent;
}

.contact-tab:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.contact-tab.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.contact-tab i {
    transition: transform 0.3s ease;
}

.contact-tab.active i {
    transform: scale(1.1);
}

/* Tab Content Animation */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

/* Urgency Radio Button Styling */
.urgency-option input:checked + div {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.urgency-option input:checked + div i {
    transform: scale(1.2);
}

/* Info Boxes */
.info-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
}

/* Address Autocomplete Dropdown */
.autocomplete-dropdown {
    max-height: 250px;
    overflow-y: auto;
    z-index: 50;
}

.autocomplete-item {
    transition: background-color 0.15s ease;
}

.autocomplete-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.autocomplete-item.bg-primary\/10 {
    background-color: rgba(255, 107, 53, 0.1);
}

/* Date/Time Inputs - Mobile Friendly */
.datetime-input,
input[type="date"],
input[type="time"],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Select dropdown styling for mobile */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff6b35'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

select::-ms-expand {
    display: none;
}

/* Optgroup styling */
select optgroup {
    font-weight: 600;
    color: #1a1a2e;
    background-color: #f3f4f6;
}

select option {
    font-weight: 400;
    color: #374151;
    padding: 8px;
}

/* Partner Logo Slider */
.partner-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partner-slider-track {
    display: flex;
    animation: partner-scroll 30s linear infinite;
    width: max-content;
}

.partner-slider-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.partner-logo img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo-text {
    background: #f3f4f6;
    padding: 1.5rem 2.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.partner-logo:hover .partner-logo-text {
    background: #1a1a2e;
    transform: scale(1.05);
}

.partner-logo-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.partner-logo:hover .partner-logo-text span {
    color: white;
}

@keyframes partner-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Partner Slider Responsive */
@media (max-width: 768px) {
    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }
    
    .partner-logo-text {
        padding: 1rem 1.5rem;
    }
    
    .partner-logo-text span {
        font-size: 0.7rem;
    }
    
    .partner-slider-track {
        animation-duration: 20s;
    }
}

/* Service Details Cards (Toggle) */
.service-details-card {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.service-details-card.active {
    max-height: 5000px;
    opacity: 1;
    margin-top: 3rem;
}

.service-detail-item {
    padding: 1rem;
    border-radius: 0.75rem;
    transition: background 0.3s ease;
}

.service-detail-item:hover {
    background: #f9fafb;
}

/* Service Toggle Cards */
.service-toggle-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-toggle-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.service-toggle-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
    position: relative;
}

.service-toggle-header:hover {
    background: #f9fafb;
}

.service-toggle-header.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
}

.service-toggle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-toggle-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-toggle-title {
    flex: 1;
}

.service-toggle-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.service-toggle-title p {
    font-size: 0.875rem;
    color: #6b7280;
}

.service-toggle-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-toggle-arrow i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.service-toggle-header.active .service-toggle-arrow {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.service-toggle-header.active .service-toggle-arrow i {
    color: white;
    transform: rotate(180deg);
}

.service-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.service-toggle-content.active {
    max-height: 3000px;
}

.service-toggle-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.service-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.service-feature-item:last-child {
    border-bottom: none;
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-icon i {
    color: #ff6b35;
    font-size: 1rem;
}

.service-feature-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.service-feature-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.service-toggle-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.service-toggle-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-toggle-cta .btn-primary:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.service-toggle-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a2e;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-toggle-cta .btn-secondary:hover {
    background: #16213e;
    transform: translateY(-2px);
}

.service-intro-text {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.03) 0%, rgba(22, 33, 62, 0.03) 100%);
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ff6b35;
}

.service-intro-text p {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* Service Card Grid Layout */
.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-toggle-card.full-width {
        grid-column: span 2;
    }
}

/* Service Number Badge */
.service-number-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

/* Print Styles */
@media print {
    .header,
    .fab-container,
    .scroll-to-top {
        display: none !important;
    }
    
    .hero {
        min-height: auto !important;
        padding: 40px 0 !important;
    }
    
    section {
        padding: 30px 0 !important;
    }
    
    .service-toggle-content {
        max-height: none !important;
    }
}
