/* ==========================================================================
   Stornierung & Umbuchung Styles
   puttgardenrodby.de/tickets/stornierung-umbuchung-bedingungen.html
   ========================================================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary-deep: #1E3A8A;
    --primary-ocean: #0EA5E9;
    --accent-amber: #F59E0B;
    --accent-red: #DC2626;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    /* Grayscale */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
    --gradient-ocean: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #10B981 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--gray-50);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-deep);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: var(--space-md);
    color: white;
    outline: 3px solid var(--accent-amber);
    outline-offset: 2px;
}

/* Header & Navigation */
.site-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--space-md) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-deep);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-ocean);
}

.navbar-brand img {
    border-radius: var(--radius-sm);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-ocean);
    background: rgba(14, 165, 233, 0.1);
}

.navbar-toggler {
    border: none;
    padding: var(--space-sm);
    color: var(--gray-700);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 3px solid var(--primary-ocean);
    outline-offset: 2px;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--gray-100);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-ocean);
}

.breadcrumb-item.active {
    color: var(--gray-800);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray-400);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: var(--space-4xl) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.hero .lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

/* Buttons */
.btn {
    font-family: var(--font-display);
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-primary {
    background: var(--gradient-warm);
    border: none;
    color: var(--gray-900);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-amber);
    color: var(--gray-900);
}

.btn-secondary {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--gray-800);
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header.light {
    color: white;
}

.section-header.light h2 {
    color: white;
}

.section-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-ocean);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Quick Info Cards */
.quick-info-section {
    padding: var(--space-3xl) 0;
    background: white;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.quick-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

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

.quick-card.highlight {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.quick-card.highlight h3,
.quick-card.highlight p {
    color: white;
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: white;
}

.quick-card.highlight .quick-icon {
    background: rgba(255, 255, 255, 0.2);
}

.quick-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.quick-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Comparison Table */
.tariff-rules-section {
    padding: var(--space-4xl) 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table thead th {
    background: var(--gray-100);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-700);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table thead th.lowprice {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: white;
}

.comparison-table thead th.standard {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table thead th.flex {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    color: white;
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .category-row td {
    background: var(--gray-100);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    padding: var(--space-sm) var(--space-lg);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.status-badge.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.table-text {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.table-text.muted {
    color: var(--gray-400);
}

.table-highlight {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
}

.table-highlight.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.table-highlight.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.table-highlight:not(.success):not(.warning) {
    background: var(--gray-100);
    color: var(--gray-700);
}

.table-footnotes {
    color: var(--gray-600);
    font-size: 0.875rem;
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

/* Guide Section */
.guide-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.guide-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.guide-card:hover {
    box-shadow: var(--shadow-lg);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.guide-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.guide-card.online .guide-icon {
    background: var(--gradient-primary);
}

.guide-card.phone .guide-icon {
    background: var(--gradient-success);
}

.guide-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guide-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-xs);
}

.guide-subtitle {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    counter-reset: step;
}

.step-list li {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-100);
}

.step-list li:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-deep);
    font-size: 0.875rem;
}

.step-content strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.step-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.step-content a {
    color: var(--primary-ocean);
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

.phone-link {
    font-weight: 600;
    font-size: 1.125rem !important;
}

.guide-cta {
    margin-top: auto;
}

/* Special Case Card */
.special-case-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-3xl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.special-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.special-content h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.special-content p {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--primary-deep);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.email-link:hover {
    background: var(--primary-deep);
    color: white;
    border-color: var(--primary-deep);
}

/* Service Section */
.service-section {
    padding: var(--space-4xl) 0;
    background: white;
}

.service-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid var(--gray-200);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-card h3 i {
    color: var(--success);
}

.service-card .lead {
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--gray-700);
}

.benefit-list li i {
    color: var(--success);
    margin-top: 0.2em;
}

.service-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: rgba(14, 165, 233, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    color: var(--primary-deep);
    font-size: 0.9375rem;
}

.service-note i {
    margin-top: 0.2em;
    flex-shrink: 0;
}

.price-highlight-box {
    background: var(--gradient-success);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    color: white;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.price-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-suffix {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.price-note {
    font-size: 0.9375rem;
    opacity: 0.95;
    margin: 0;
}

/* Booking Comparison Section */
.booking-comparison-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.booking-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: var(--shadow-lg);
}

.booking-header {
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.booking-card.online .booking-header {
    background: var(--gradient-primary);
    color: white;
}

.booking-card.hafen .booking-header {
    background: var(--gray-200);
    color: var(--gray-800);
}

.booking-header i {
    font-size: 1.5rem;
}

.booking-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.25rem;
}

.booking-card.online .booking-header h3 {
    color: white;
}

.booking-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-badge.recommended {
    background: var(--accent-amber);
    color: var(--gray-900);
}

.booking-card.hafen .booking-badge {
    background: var(--gray-700);
    color: white;
}

.booking-features {
    list-style: none;
    padding: var(--space-xl);
    margin: 0;
}

.booking-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
}

.booking-features li i {
    margin-top: 0.2em;
    flex-shrink: 0;
}

.booking-summary {
    padding: 0 var(--space-xl) var(--space-xl);
    margin: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-style: italic;
}

.handling-fee-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
    color: var(--gray-800);
}

.handling-fee-note i {
    color: var(--danger);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1em;
}

/* Insider Section */
.insider-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
    color: white;
}

.insider-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
    transition: all 0.3s ease;
}

.insider-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.insider-card h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.insider-card h4 i {
    color: var(--accent-amber);
}

.insider-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.insider-card p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) 0;
    background: white;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
    padding: var(--space-lg);
    background: var(--gray-50);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-deep);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: 3px solid var(--primary-ocean);
    outline-offset: -3px;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: var(--space-lg);
    color: var(--gray-700);
    line-height: 1.7;
}

.accordion-body a {
    color: var(--primary-ocean);
}

/* Contact Section */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.contact-value {
    display: block;
    color: var(--primary-ocean);
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
    margin-bottom: var(--space-sm);
}

.contact-value:hover {
    color: var(--primary-deep);
}

.contact-note {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--space-md);
}

.cta-section p {
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

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

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand img {
    border-radius: var(--radius-sm);
}

.footer-text {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-xl);
    margin-top: var(--space-3xl);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background: var(--primary-deep);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background: var(--primary-ocean);
    transform: translateY(-4px);
}

.back-to-top:focus {
    outline: 3px solid var(--accent-amber);
    outline-offset: 2px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Loading States */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

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

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-ocean);
    outline-offset: 2px;
}

/* Responsive Design */

/* Mobile (< 576px) */
@media (max-width: 575.98px) {
    .hero {
        padding: var(--space-2xl) 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-info-section {
        margin-top: -1.5rem;
    }
    
    .quick-card {
        padding: var(--space-lg);
    }
    
    .guide-header {
        flex-wrap: wrap;
    }
    
    .special-case-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Tablet (576px - 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero {
        padding: var(--space-3xl) 0;
    }
    
    .quick-info-section .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: var(--space-md);
    }
    
    .quick-info-section .col-md-4 {
        min-width: 280px;
    }
}

/* Medium devices (768px - 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .service-card .row {
        flex-direction: column;
    }
    
    .price-highlight-box {
        margin-top: var(--space-xl);
    }
}

/* Large devices (992px - 1200px) */
@media (min-width: 992px) {
    .guide-card {
        display: flex;
        flex-direction: column;
    }
    
    .guide-cta {
        margin-top: auto;
    }
}

/* Extra large devices (> 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .back-to-top,
    .cta-section,
    .btn {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: var(--space-lg) 0;
    }
    
    .hero h1,
    .hero .lead {
        color: black !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}