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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary-color: #00ffb3;
    --secondary-color: #1a1a1a;
    --accent-color: #00ffb3;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --border-color: #333333;
    --shadow-color: rgba(0, 255, 179, 0.3);
    --gradient-primary: linear-gradient(45deg, #00ffb3, #00d4aa);
    --gradient-secondary: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

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

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

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.accent {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 255, 179, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 179, 0.3);
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 255, 179, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 179, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 255, 179, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 179, 0.5);
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(0, 255, 179, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 179, 0.1), rgba(0, 212, 170, 0.1));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 179, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 179, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 179, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
section {
    padding: 80px 0;
}

.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;
}

/* Company Info Section */
.company-info {
    background: var(--gradient-secondary);
}

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

.info-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.info-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 179, 0.5));
}

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

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-3px);
    background: rgba(26, 26, 26, 0.5);
}

.advantage-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.advantage-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 179, 0.3));
}

/* Services Section */
.services-preview {
    background: var(--gradient-secondary);
}

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

.service-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 179, 0.5));
}

.service-price {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.service-price span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.section-cta {
    text-align: center;
}

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

.review-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.1);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.review-stars svg {
    filter: drop-shadow(0 0 3px rgba(0, 255, 179, 0.3));
}

.review-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review-author strong {
    color: var(--accent-color);
}

.review-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-preview {
    background: var(--gradient-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 179, 0.3));
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 179, 0.2);
}

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

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.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: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.social-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

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

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

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

.cookie-text h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--secondary-color);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--accent-color);
}

.cookie-category {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.cookie-info h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.cookie-info p {
    margin: 0;
    font-size: 0.9rem;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

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

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 255, 179, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 179, 0.8);
    }
}

/* Page Hero Styles for Internal Pages */
.page-hero {
    background: var(--gradient-secondary);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 179, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 0;
    background: var(--bg-color);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: var(--accent-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.content-wrapper h3 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-wrapper h4 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.content-wrapper ul li strong {
    color: var(--accent-color);
}

.content-wrapper .contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.content-wrapper .contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.content-wrapper .contact-info a:hover {
    text-decoration: underline;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 3rem;
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.story-text h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.story-image {
    text-align: center;
}

.story-image svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 179, 0.3));
}

.mission-values {
    padding: 80px 0;
    background: var(--gradient-secondary);
}

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

.mission-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.mission-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mission-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 179, 0.5));
}

.team {
    padding: 80px 0;
    background: var(--bg-color);
}

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

.team-member {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image svg {
    filter: drop-shadow(0 0 15px rgba(0, 255, 179, 0.3));
}

.member-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-expertise span {
    background: rgba(0, 255, 179, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 255, 179, 0.3);
}

.company-stats {
    padding: 80px 0;
    background: var(--gradient-secondary);
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 255, 179, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Page Styles */
.services-catalog {
    padding: 80px 0;
    background: var(--bg-color);
}

.service-detailed {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detailed:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 255, 179, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-icon svg {
    filter: drop-shadow(0 0 15px rgba(0, 255, 179, 0.5));
}

.service-title h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-content {
    padding: 2rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.service-features h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features ul li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-features ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    background: rgba(0, 255, 179, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 179, 0.2);
    margin-bottom: 2rem;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price-main .price {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
}

.price-details {
    display: grid;
    gap: 0.5rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 179, 0.1);
    color: var(--text-muted);
}

.price-option strong {
    color: var(--text-color);
}

.service-reviews h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.review-item {
    background: rgba(0, 255, 179, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.review-item p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.review-item cite {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 179, 0.3);
}

.contact-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 179, 0.3));
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(0, 255, 179, 0.5);
}

.contact-hours h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.hours-list {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.day {
    color: var(--text-color);
    font-weight: 500;
}

.time {
    color: var(--accent-color);
    font-weight: 600;
}

.emergency-contact {
    background: rgba(0, 255, 179, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 179, 0.2);
    text-align: center;
}

.emergency-contact h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.emergency-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.emergency-contact strong {
    color: var(--accent-color);
}

.contact-form-section {
    padding: 80px 0;
    background: var(--gradient-secondary);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

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

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

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 179, 0.2);
    background: rgba(42, 42, 42, 1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.field-error {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-color);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.faq-section h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.1);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 120px 0;
    background: var(--gradient-secondary);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    filter: drop-shadow(0 0 20px rgba(0, 255, 179, 0.5));
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.thanks-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.detail-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.detail-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.detail-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 179, 0.3));
}

.detail-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-reminder {
    background: rgba(0, 255, 179, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 179, 0.2);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-reminder h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 179, 0.5);
}

.phone-link:hover {
    text-decoration: underline;
}

.next-steps {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.next-steps h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.steps-list {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 26, 26, 0.6);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.step-number {
    background: var(--accent-color);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-muted);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.additional-resources {
    padding: 80px 0;
    background: var(--bg-color);
}

.additional-resources h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.resource-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.resource-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 179, 0.3));
}

.resource-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(0, 255, 179, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* About page responsive */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services page responsive */
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Thanks page responsive */
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-details {
        grid-template-columns: 1fr;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}
