/* Rümpel Fix Website Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #ffd700;
    --text-dark: #1a202c;
    --text-light: #718096;
    --background-light: #f7fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 25px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-overlay: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(45, 90, 135, 0.8));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.logo {
    height: 55px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
    transition: all 0.3s ease;
}

.nav-brand:hover .logo {
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.25);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-link:hover {
    color: white;
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.nav-link.active {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.25);
}

.nav-link::after {
    display: none;
}

/* Navigation CTA Button */
.nav-cta {
    margin-left: 1rem;
}

.nav-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.nav-cta-button i {
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%) translateY(-50%);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateX(-100%) translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(26, 54, 93, 0.1);
}

.hamburger:hover {
    background: rgba(26, 54, 93, 0.15);
    transform: scale(1.05);
}

.hamburger.active {
    background: var(--gradient-primary);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar {
    background: white;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/wiesouns.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    order: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-primary span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.btn-primary small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    display: flex;
    gap: 2px;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.rating-reviews {
    color: var(--text-light);
    font-size: 0.85rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    color: var(--text-light);
    font-size: 0.9rem;
}

.google-badge i {
    color: #4285f4;
    font-size: 1.1rem;
}

.hero-image-container {
    order: 2;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f8f9fa;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3), rgba(45, 90, 135, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
}

.floating-card {
    position: absolute;
    top: -20px;
    right: -30px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.card-content p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-logo {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    font-weight: 500;
    color: var(--text-light);
}

/* Situation Section */
.situation-section {
    padding: 5rem 0;
}

.situation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.situation-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-item li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.process-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    position: relative;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-item h3 {
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Package Section */
.package-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--background-light);
}

.package-subtitle {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
}

.why-us-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.why-us-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.why-us-text .section-title::after {
    left: 0;
    transform: none;
}

.why-us-text .section-subtitle {
    text-align: left;
    margin-bottom: 0;
}

.why-us-image {
    position: relative;
}

.why-us-image .responsive-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.image-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reason-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-list {
    list-style: none;
}

.location-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.location-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.map-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #dc2626;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.map-marker:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Positionierung der Marker - basierend auf Deutschland-Karte */
.marker-sachsen {
    top: 45%;
    left: 78%;
}

.marker-sachsen-anhalt {
    top: 35%;
    left: 65%;
}

.marker-thueringen {
    top: 52%;
    left: 58%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 2.5rem;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background: #fafafa;
    padding: 25px 30px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-accordion {
        margin: 40px auto 0;
        gap: 15px;
    }
    
    .faq-item {
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        padding: 20px;
        min-height: 60px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .faq-question h3 {
        font-size: 1.1em;
        line-height: 1.4;
        padding-right: 15px;
    }
    
    .faq-question i {
        font-size: 1.3em;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-accordion {
        margin: 30px auto 0;
        gap: 12px;
    }
    
    .faq-item {
        margin: 0 10px;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 18px 15px;
        min-height: 56px;
    }
    
    .faq-question h3 {
        font-size: 1em;
        line-height: 1.3;
        padding-right: 12px;
    }
    
    .faq-question i {
        font-size: 1.2em;
        width: 22px;
        height: 22px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 15px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.9em;
        line-height: 1.4;
    }
}

/* Touch-optimized styles */
@media (hover: none) and (pointer: coarse) {
    .faq-item:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .faq-question:hover {
        background: white;
    }
    
    .faq-question:active {
        background: #f0f0f0;
        transform: scale(0.98);
    }
    
    .faq-item.active .faq-question:active {
        background: var(--primary-color);
        transform: scale(0.98);
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.guarantee-cta {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 20px 20px;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        margin: 0 2rem;
        border-radius: 15px;
        font-size: 1.1rem;
        background: rgba(26, 54, 93, 0.05);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--gradient-primary);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(26, 54, 93, 0.25);
    }
    
    .nav-link.active {
        background: var(--gradient-primary);
        color: white;
    }
    
    /* Mobile CTA Button */
    .nav-cta {
        margin: 1rem 0 0 0;
    }
    
    .nav-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 15px;
        justify-content: center;
        width: calc(100% - 4rem);
        margin: 0 2rem;
        background: var(--gradient-primary);
        animation: glow 2s ease-in-out infinite alternate;
    }
    
    @keyframes glow {
        from { box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4); }
        to { box-shadow: 0 8px 25px rgba(26, 54, 93, 0.6); }
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-rating {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        transform: none;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .floating-card {
        position: static;
        margin: 1rem auto 0;
        animation: none;
        max-width: 250px;
    }
    
    /* Why Us Mobile Styles */
    .why-us-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-us-text .section-title {
        text-align: center;
    }
    
    .why-us-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-us-text .section-subtitle {
        text-align: center;
    }
    
    .why-us-image .responsive-image {
        height: 250px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        padding: 1.5rem;
    }
    
    .situation-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .card-content h4 {
        font-size: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.7rem;
    }
    
    .testimonials-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Footer Styles - Modern Design */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

.footer-top {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    margin-bottom: 1rem !important;
    flex-direction: row !important;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    filter: brightness(1.1) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.footer-brand-text {
    font-size: 2rem !important;
    font-weight: 800 !important;
    background: var(--gradient-accent) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.footer-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-contact {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.footer-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.footer-phone i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.footer-main {
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a.active {
    color: var(--accent-color);
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.cert-badge i {
    color: var(--accent-color);
}

/* Guarantee Section - Modern Design */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
    animation: float 3s ease-in-out infinite;
}

.guarantee-section .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.guarantee-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.guarantee-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-section .section-title {
        font-size: 2.2rem;
    }
    
    .guarantee-description {
        font-size: 1.1rem;
    }
    
    .guarantee-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for Legal Pages */
.legal-section {
    padding: 5rem 0;
    background: var(--background-light);
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--background-light);
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .hamburger,
    .hero-cta,
    .cta-section,
    .guarantee-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}