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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0f0f0f;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #ffd500;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #26ff00;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd500, #ffed4e);
    color: #000 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd500);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 213, 0, 0.3);
}

.btn-secondary {
    background: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #404040;
}

.btn-secondary:hover {
    background: #404040;
    border-color: #26ff00;
}

.btn-outline {
    background: transparent;
    color: #26ff00;
    border: 2px solid #26ff00;
}

.btn-outline:hover {
    background: #26ff00;
    color: #000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd500;
    text-decoration: none;
}

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

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd500;
    background: rgba(255, 213, 0, 0.1);
}

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #ffd500;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd500, #26ff00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section.bg-dark {
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd500, #26ff00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Cards */
.card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffd500;
}

.card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

.card svg {
    margin-bottom: 1.5rem;
}

/* Advantage Cards */
.advantage-card {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: #333;
}

.advantage-card svg {
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #26ff00;
}

.service-card svg {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #26ff00;
    margin-bottom: 1rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    border-color: #ffd500;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-header > div:first-of-type {
    flex: 1;
    min-width: 200px;
}

.service-header h2,
.service-header h3 {
    margin-bottom: 0.5rem;
    color: #ffd500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd500;
    font-size: 1.1rem;
}

.rating-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.price {
    background: linear-gradient(135deg, #26ff00, #20e000);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.service-content {
    margin-top: 1rem;
}

.service-features h4 {
    color: #ffd500;
    margin: 1.5rem 0 0.5rem;
}

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

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

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

/* Package Cards */
.package-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
    position: relative;
}

.package-card.featured {
    border-color: #ffd500;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "Beliebt";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd500;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #26ff00;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #26ff00;
    font-weight: bold;
}

/* Achievement Items */
.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd500;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Review Cards */
.review-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    background: #333;
}

.review-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.reviewer {
    color: #ffd500;
    font-weight: 500;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #ffd500;
    margin-bottom: 0.5rem;
}

/* Contact Cards */
.contact-card {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ffd500;
}

.contact-card svg {
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

.contact-card small {
    color: #888;
    font-size: 0.9rem;
}

/* Forms */
.contact-form {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #2a2a2a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd500;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #404040;
    border-radius: 6px;
    background: #2a2a2a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd500;
    box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #404040;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd500;
    border-color: #ffd500;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

/* Contact Form Info */
.contact-form-info h2 {
    color: #ffd500;
    margin-bottom: 1rem;
}

.contact-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.benefit-item svg {
    flex-shrink: 0;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #26ff00;
}

.team-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-card h3 {
    color: #ffd500;
    margin-bottom: 0.5rem;
}

.role {
    color: #26ff00;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    background: #333;
}

.value-card svg {
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

/* Certificate Cards */
.cert-card {
    text-align: center;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: #ffd500;
}

.cert-card svg {
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

/* Additional Services */
.additional-service {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.additional-service:hover {
    transform: translateY(-5px);
    border-color: #26ff00;
}

.additional-service svg {
    margin-bottom: 1rem;
}

.additional-service h3 {
    color: #26ff00;
    margin-bottom: 1rem;
}

/* Delivery Areas */
.delivery-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #2a2a2a;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: #333;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-info .card {
    margin-bottom: 0;
}

.delivery-info h4 {
    color: #ffd500;
    margin-bottom: 1rem;
}

.delivery-info ul {
    list-style: none;
    padding: 0;
}

.delivery-info li {
    padding: 0.25rem 0;
    color: #b0b0b0;
}

/* Directions */
.map-placeholder {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #2a2a2a;
}

.directions-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.direction-item:hover {
    border-color: #ffd500;
}

.direction-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.direction-item h4 {
    color: #ffd500;
    margin-bottom: 0.5rem;
}

/* Emergency Contact */
.emergency-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    border: 2px solid #26ff00;
    text-align: center;
}

.emergency-contact h2 {
    color: #26ff00;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd500, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 213, 0, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #2a2a2a;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffd500;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd500;
    color: #000;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 1001;
    border-top: 2px solid #ffd500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: #e0e0e0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    border: 1px solid #2a2a2a;
}

.cookie-modal-content h3 {
    color: #ffd500;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #e0e0e0;
}

.cookie-option input[type="checkbox"] {
    accent-color: #ffd500;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #ffd500;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #26ff00;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #ffd500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
    margin: 1rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Cookie Categories */
.cookie-category {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid #2a2a2a;
}

.cookie-info h4 {
    color: #ffd500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cookie-info ul {
    margin-left: 1.5rem;
}

.browser-links ul li a {
    color: #26ff00;
}

.browser-links ul li a:hover {
    color: #ffd500;
}

.cookie-controls {
    margin: 2rem 0;
    text-align: center;
}

.third-party-cookies {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid #2a2a2a;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd500, #26ff00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.submission-details {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #2a2a2a;
    text-align: left;
}

.submission-details h3 {
    color: #ffd500;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-item {
    margin-bottom: 0.75rem;
    color: #b0b0b0;
}

.detail-item strong {
    color: #e0e0e0;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    color: #ffd500;
    margin-bottom: 2rem;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, #ffd500, #ffed4e);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #26ff00;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b0b0b0;
    margin: 0;
}

.contact-emergency {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #2a2a2a;
}

.contact-emergency h3 {
    color: #26ff00;
    margin-bottom: 1rem;
}

.contact-emergency p {
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.info-card {
    text-align: center;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    background: #333;
}

.info-card svg {
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #ffd500;
    margin-bottom: 1rem;
}

/* Package Headers */
.package-header {
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26ff00;
    margin: 0.5rem 0;
}

.package-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.package-rating .stars {
    color: #ffd500;
}

.package-rating span:last-child {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.package-content {
    margin-bottom: 2rem;
}

.package-description {
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .page-header h1 {
        font-size: 2.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .step-item {
        text-align: center;
        flex-direction: column;
    }

    .thank-you-section h1 {
        font-size: 2.25rem;
    }

    .service-header {
        flex-direction: column;
    }

    .price {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 2rem 0;
    }

    .card,
    .service-card,
    .package-card,
    .contact-form {
        padding: 1.5rem;
    }

    .emergency-contact {
        padding: 2rem;
    }

    .thank-you-section h1 {
        font-size: 1.75rem;
    }

    .package-price,
    .price {
        font-size: 2rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }
    body {
        word-break: break-word;
    }
    .service-detail-card {
        padding: 0;
        border:none;
        background-color: transparent;
    }
}

/* Smooth animations for all interactions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #ffd500;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #ffd500;
        color: #000;
        border: 2px solid #000;
    }
    
    .btn-outline {
        border-width: 3px;
    }
}

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