/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: 12px;
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.nav-logo span {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #e9ecef;
}

.lang-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-link:hover,
.lang-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.lang-separator {
    color: #ccc;
    font-size: 0.8rem;
}

.flag-icon {
    font-size: 1rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
}

.lang-link:hover .flag-icon {
    transform: scale(1.1);
}

.lang-link.active .flag-icon {
    filter: drop-shadow(0 1px 3px rgba(255, 107, 53, 0.3));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Unlock Prompt */
.unlock-prompt {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 0.25rem;
    text-align: center;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Lock Button Styles */
.lock-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lock-btn .lock-icon-btn,
.lock-btn .unlock-icon-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lock-btn .lock-icon-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.lock-btn .unlock-icon-btn {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
}

.lock-btn .btn-content {
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    z-index: 2;
    position: relative;
}

.lock-btn .btn-text {
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

/* Unlocked state */
.lock-btn.unlocked .lock-icon-btn {
    opacity: 0;
    transform: translateY(-50%) scale(0.8) rotate(180deg);
}

.lock-btn.unlocked .unlock-icon-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
}

.lock-btn.unlocked {
    background: #27ae60;
    animation: unlockSuccess 0.6s ease-out;
}

@keyframes unlockSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-secondary {
    background: #25d366;
    color: white;
}

.btn-secondary:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.btn-outline:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.key-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    background-image: url('images/Schluesselnotdienst-Pro2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.key-icon {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

/* Lock Unlock Animation Container */
.lock-unlock-animation {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
}

.lock-icon,
.unlock-icon {
    position: absolute;
    font-size: 4rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-primary {
    top: 15%;
    left: 15%;
    color: #ff6b35;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.key-secondary {
    top: 25%;
    right: 15%;
    color: #ffd700;
    animation-delay: 0.5s;
    transform: rotate(15deg);
    font-size: 3.5rem;
}

.lock-icon {
    color: #e74c3c; /* Red */
    animation: lockToUnlock 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.4));
}

.unlock-icon {
    color: #27ae60; /* Green */
    animation: unlockToLock 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(39, 174, 96, 0.4));
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
    }
    50% { 
        transform: translateY(-20px) rotate(var(--rotation, 0deg)); 
    }
}

/* Lock Unlocking Animation */
@keyframes lockToUnlock {
    0%, 40% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50%, 90% {
        opacity: 0;
        transform: scale(0.8) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(180deg);
    }
}

@keyframes unlockToLock {
    0%, 40% {
        opacity: 0;
        transform: scale(0.8) rotate(-180deg);
    }
    50%, 90% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes keyGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 15px currentColor);
    }
}

.key-primary {
    --rotation: -15deg;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

.key-secondary {
    --rotation: 15deg;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.lock-icon {
    filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.4));
}

.unlock-icon {
    filter: drop-shadow(0 4px 8px rgba(39, 174, 96, 0.4));
}

.key-primary:hover,
.key-secondary:hover,
.lock-icon:hover,
.unlock-icon:hover {
    animation: keyGlow 1s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 2rem;
    margin-right: 1rem;
    color: #ffd700;
}

.method-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-value {
    display: block;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Impressum Styles */
.impressum {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.impressum-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.impressum-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    color: #ff6b35;
    font-weight: 600;
}

.info-item span {
    color: #666;
    line-height: 1.5;
}

.legal-text {
    color: #666;
    line-height: 1.7;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.footer-logo span {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .flag-icon {
        font-size: 0.9rem;
    }
    
    .lang-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .key-illustration {
        width: 200px;
        height: 200px;
        background-size: contain;
        background-position: center;
    }

    .lock-unlock-animation {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .lock-icon,
    .unlock-icon {
        font-size: 2.5rem;
    }
    
    .key-secondary {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-method i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .impressum-content h1 {
        font-size: 2rem;
    }

    .impressum-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* About Us Page Styles */
.about {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-weight: 600;
    margin: 0;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.team-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.25rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.service-areas {
    margin-bottom: 4rem;
    text-align: center;
}

.service-areas h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-areas p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 500;
    color: #333;
}

.area-item i {
    color: #ff6b35;
}

.emergency-contact {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.emergency-contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

.emergency-info p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Prices Page Styles */
.prices {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.prices-content {
    max-width: 1200px;
    margin: 0 auto;
}

.prices-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.prices-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.prices-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.price-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.additional-services {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item:last-child {
    border-bottom: none;
}

.service-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #666;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.pricing-notes {
    margin-bottom: 4rem;
}

.pricing-notes h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.note-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.25rem;
}

.note-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.note-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for New Pages */
@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons,
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1,
    .services-hero h1,
    .prices-hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-logo span {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.6rem;
        margin-right: 8px;
    }
    
    .footer-logo span {
        font-size: 1.1rem;
    }
    
    .footer-logo i {
        font-size: 1.3rem;
        margin-right: 8px;
    }
}

/* Logo Animation */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.5));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.nav-logo i {
    animation: logoFloat 3s ease-in-out infinite;
}

.nav-logo:hover i {
    animation: logoGlow 1s ease-in-out infinite;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-visual,
.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Payment Methods Section */
.payment-methods {
    background: #fff;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.payment-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.payment-methods p {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.payment-card-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0070ba;
}

.payment-action {
    margin-top: 20px;
}

.btn-paypal {
    background: linear-gradient(135deg, #0070ba, #009cde);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
}

.btn-paypal:hover {
    background: linear-gradient(135deg, #005ea6, #0088c7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

.btn-paypal:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 112, 186, 0.3);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.payment-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.payment-card p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    text-align: center;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.visa {
    background: linear-gradient(135deg, #1a1f71, #2c5aa0);
}

.badge.mastercard {
    background: linear-gradient(135deg, #eb001b, #f79e1b);
}

.badge.amex {
    background: linear-gradient(135deg, #006fcf, #00a8e8);
}

.badge.paypal {
    background: linear-gradient(135deg, #0070ba, #009cde);
}

.badge.cash {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* Price Note Styling */
.price-note {
    text-align: center;
    margin: 10px 0;
    padding: 8px 0;
}

.price-note small {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.payment-note {
    text-align: center;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.payment-note p {
    color: #2c3e50;
    font-size: 1rem;
    margin: 0;
}

.payment-note i {
    color: #ff6b35;
    margin-right: 10px;
}

/* Mobile Responsiveness for Payment Methods */
@media (max-width: 768px) {
    .payment-methods {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .payment-methods h2 {
        font-size: 2rem;
    }
    
    .payment-methods p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-card {
        padding: 30px 20px;
    }
    
    .payment-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .payment-card h3 {
        font-size: 1.3rem;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .btn-paypal {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .payment-action {
        margin-top: 15px;
    }
}
