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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    word-break: break-word;
}
img {
    max-width: 100%;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

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

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

a:hover {
    color: #24fc21;
    text-shadow: 0 0 8px #24fc21;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    color: #0a0a0a;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(216, 252, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 252, 33, 0.5);
    color: #0a0a0a;
}

.btn-secondary {
    background: transparent;
    color: #d8fc21;
    padding: 12px 30px;
    border: 2px solid #d8fc21;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #d8fc21;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 252, 33, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d8fc21;
    text-shadow: 0 0 10px rgba(216, 252, 33, 0.5);
}

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

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(216, 252, 33, 0.1);
    color: #d8fc21;
    text-shadow: 0 0 8px rgba(216, 252, 33, 0.5);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #d8fc21;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(216, 252, 33, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.section-header h2 {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(216, 252, 33, 0.2);
}

.page-header h1 {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Grid Layouts */
.about-grid,
.contact-grid,
.services-grid,
.portfolio-grid,
.reviews-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

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

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

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

/* Cards */
.service-card,
.review-card,
.story-card,
.stat-card,
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover,
.review-card:hover,
.story-card:hover,
.stat-card:hover,
.info-card:hover {
    transform: translateY(-10px);
    border-color: #d8fc21;
    box-shadow: 0 20px 40px rgba(216, 252, 33, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0);
}

.service-price {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Portfolio */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Reviews */
.review-stars {
    color: #d8fc21;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-author {
    color: #d8fc21;
    font-weight: 600;
    margin-top: 1rem;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d8fc21;
    text-shadow: 0 0 10px rgba(216, 252, 33, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

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

/* Forms */
.contact-form,
.newsletter-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d8fc21;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(216, 252, 33, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #d8fc21;
    box-shadow: 0 0 10px rgba(216, 252, 33, 0.3);
}

input::placeholder,
textarea::placeholder {
    color: #888888;
}

/* Checkbox */
.checkbox-container {
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
     display: none;
}
option {
    background-color: #0a0a0a;
}
.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #d8fc21;
    border-color: #d8fc21;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0);
}

.contact-content h3 {
    color: #d8fc21;
    margin-bottom: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(216, 252, 33, 0.1);
    border: 1px solid rgba(216, 252, 33, 0.3);
    border-radius: 20px;
    color: #d8fc21;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d8fc21;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* About Page Specific */
.about-details {
    padding: 2rem 0;
}

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

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #d8fc21;
}

.profile-title {
    color: #d8fc21;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.education-grid {
    display: grid;
    gap: 2rem;
}

.education-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
}

.education-year {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    color: #0a0a0a;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    height: fit-content;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
}

.timeline-date {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    color: #0a0a0a;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    height: fit-content;
}

.timeline-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

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

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0);
}

/* Services Page Specific */
.service-detail {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-header .service-icon {
    width: 60px;
    height: 60px;
    margin: 0;
}

.service-title h3 {
    margin-bottom: 0.5rem;
}

.service-rating {
    color: #d8fc21;
}

.rating-text {
    color: #cccccc;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.service-features h4 {
    color: #d8fc21;
    margin: 1.5rem 0 1rem;
}

.service-features ul {
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

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

.price-tier {
    background: rgba(216, 252, 33, 0.1);
    border: 1px solid rgba(216, 252, 33, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.price-tier h5 {
    color: #d8fc21;
    margin-bottom: 1rem;
}

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

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

.additional-service {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Contact Page Specific */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
}

.contact-details {
    margin-bottom: 3rem;
}

.office-hours {
    margin-top: 2rem;
}

.hours-list {
    margin: 1rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(216, 252, 33, 0.1);
}

.day {
    color: #cccccc;
}

.time {
    color: #d8fc21;
    font-weight: 600;
}

.hours-note {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    margin-top: 1rem;
}

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

.quick-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

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

.location-details h4 {
    color: #d8fc21;
    margin: 2rem 0 1rem;
}

.map-placeholder {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    color: white;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.legal-text h2 {
    color: #d8fc21;
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #24fc21;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.legal-text h4 {
    color: #d8fc21;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

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

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

.contact-box {
    background: rgba(216, 252, 33, 0.1);
    border: 1px solid rgba(216, 252, 33, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-box p {
    margin: 0;
    color: #ffffff;
}

.cookie-table {
    background: rgba(216, 252, 33, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.cookie-table h4 {
    color: #d8fc21;
    margin-bottom: 1rem;
}

.cookie-settings-button {
    text-align: center;
    margin: 3rem 0;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 252, 33, 0.2);
    border-radius: 20px;
    padding: 4rem;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
}

.thank-you h1 {
    background: linear-gradient(135deg, #d8fc21, #24fc21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.step-content h3 {
    color: #d8fc21;
    margin-bottom: 0.5rem;
}

.contact-urgency {
    background: rgba(216, 252, 33, 0.1);
    border: 1px solid rgba(216, 252, 33, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d8fc21;
    display: block;
    margin: 1rem 0;
}

.office-hours {
    color: #cccccc;
    font-size: 0.9rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.related-services {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 0;
}

.newsletter-signup {
    background: rgba(216, 252, 33, 0.05);
    padding: 4rem 0;
}

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

.newsletter-input {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input input {
    flex: 1;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
}

.service-link {
    color: #d8fc21;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(216, 252, 33, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #d8fc21;
    color: #0a0a0a;
}

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

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

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

.cookie-content h3 {
    color: #d8fc21;
    margin-bottom: 1rem;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

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

.cookie-modal-content {
    background: #1a1a1a;
    border: 2px solid #d8fc21;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #d8fc21;
    margin-bottom: 2rem;
    text-align: center;
}

.cookie-category {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.cookie-info h4 {
    color: #d8fc21;
    margin-bottom: 0.5rem;
}

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

.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: #333;
    transition: .4s;
    border-radius: 34px;
}

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

input:checked + .slider {
    background-color: #d8fc21;
}

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

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(216, 252, 33, 0.2);
    padding: 4rem 0 2rem;
}

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

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

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

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

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

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(216, 252, 33, 0.1);
    color: #888888;
}

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(216, 252, 33, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(216, 252, 33, 0.8);
    }
}

.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(216, 252, 33, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .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(-10px) rotate(-45deg);
    }

    /* Typography Mobile */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

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

    /* Grids Mobile */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .newsletter-input {
        flex-direction: column;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .education-item,
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    /* Mobile spacing */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .cookie-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

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

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

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .review-card,
    .story-card {
        padding: 1.5rem;
    }

    .legal-text {
        padding: 2rem;
    }

    .thank-you-content {
        padding: 2rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .nav-logo a {
        font-size: 1.3rem;
    }
    .contact-item {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .social-links,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border-width: 3px;
    }

    .service-card,
    .review-card,
    .story-card {
        border-width: 2px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Dark mode override (in case user has light mode preference) */
@media (prefers-color-scheme: light) {
    /* Keep dark theme as specified in requirements */
    body {
        background-color: #0a0a0a;
        color: #ffffff;
    }
}
