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

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

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

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

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #fc035e, #035efc);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(252, 3, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 3, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fc035e;
    padding: 12px 25px;
    border: 2px solid #fc035e;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #fc035e;
    color: white;
    transform: translateY(-2px);
}

.btn-package {
    background: #1a1a1a;
    color: #fc035e;
    padding: 12px 24px;
    border: 1px solid #fc035e;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-package:hover {
    background: #fc035e;
    color: white;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(252, 3, 94, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fc035e;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    margin-left: 10px;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #fc035e;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(45deg, #fc035e, #035efc);
    border-radius: 1px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fc035e;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(3, 94, 252, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fc035e, #035efc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(252, 3, 94, 0.05) 0%, rgba(3, 94, 252, 0.05) 100%);
}

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

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(252, 3, 94, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #fc035e;
    box-shadow: 0 10px 30px rgba(252, 3, 94, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(20, 20, 20, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(252, 3, 94, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 3, 94, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #fc035e;
    box-shadow: 0 20px 40px rgba(252, 3, 94, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.price {
    color: #fc035e;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(3, 94, 252, 0.05) 0%, rgba(252, 3, 94, 0.05) 100%);
}

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

.package-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(252, 3, 94, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-color: #fc035e;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(252, 3, 94, 0.3);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #fc035e, #035efc);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(252, 3, 94, 0.2);
    padding-bottom: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    color: #fc035e;
    font-weight: 700;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

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

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.achievement {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-5px);
    border-color: #fc035e;
}

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

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

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(252, 3, 94, 0.05) 0%, rgba(3, 94, 252, 0.05) 100%);
}

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

.review-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #fc035e;
    box-shadow: 0 15px 35px rgba(252, 3, 94, 0.2);
}

.review-stars {
    margin-bottom: 1.5rem;
}

.review-author {
    color: #fc035e;
    font-weight: 600;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(252, 3, 94, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(252, 3, 94, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fc035e;
    box-shadow: 0 0 10px rgba(252, 3, 94, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #707070;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.9));
    padding: 60px 0 30px;
    border-top: 1px solid rgba(252, 3, 94, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #fc035e;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo span {
    margin-left: 10px;
}

.footer-section h4 {
    color: #fc035e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

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

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 1px solid rgba(252, 3, 94, 0.3);
    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 h4 {
    margin-bottom: 0.5rem;
    color: #fc035e;
}

.cookie-text p {
    margin: 0;
    color: #b0b0b0;
}

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

.btn-cookie {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept-all {
    background: #fc035e;
    color: white;
}

.btn-cookie.necessary {
    background: transparent;
    color: #fc035e;
    border: 1px solid #fc035e;
}

.btn-cookie.settings {
    background: #035efc;
    color: white;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

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

.cookie-modal-content {
    background: #1a1a1a;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(252, 3, 94, 0.3);
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-close {
    background: none;
    border: none;
    color: #fc035e;
    font-size: 24px;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-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: 0.4s;
    border-radius: 24px;
}

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

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

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

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.btn-cookie.save {
    background: #fc035e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
}

/* Page Hero for subpages */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(252, 3, 94, 0.1) 0%, rgba(3, 94, 252, 0.1) 100%);
    border-bottom: 1px solid rgba(252, 3, 94, 0.2);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fc035e, #035efc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Page Specific Styles */
.services-categories {
    padding: 80px 0;
}

.category-section {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(252, 3, 94, 0.2);
}

.category-icon {
    margin-bottom: 1rem;
}

.service-detailed {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(20, 20, 20, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detailed:hover {
    transform: translateY(-5px);
    border-color: #fc035e;
    box-shadow: 0 15px 35px rgba(252, 3, 94, 0.2);
}

.service-rating {
    margin-bottom: 1rem;
    color: #fc035e;
    font-weight: 600;
}

.rating {
    color: #fc035e;
    margin-right: 10px;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 25px;
    color: #b0b0b0;
}

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

.service-price {
    font-size: 1.4rem;
    color: #fc035e;
    font-weight: 700;
    margin-top: auto;
    text-align: right;
}

.services-process {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(3, 94, 252, 0.05) 0%, rgba(252, 3, 94, 0.05) 100%);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fc035e, #035efc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* About Page Specific Styles */
.company-story,
.company-values,
.team-section,
.company-stats {
    padding: 80px 0;
}

.company-story {
    background: linear-gradient(135deg, rgba(252, 3, 94, 0.05) 0%, rgba(3, 94, 252, 0.05) 100%);
}

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

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

.value-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #fc035e;
    box-shadow: 0 15px 35px rgba(252, 3, 94, 0.2);
}

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

.team-member {
    text-align: center;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #fc035e;
}

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

.member-role {
    color: #fc035e;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
}

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

.stat-label {
    color: #b0b0b0;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(252, 3, 94, 0.1) 0%, rgba(3, 94, 252, 0.1) 100%);
}

/* Contact Page Specific Styles */
.contact-main {
    padding: 80px 0;
}

.contact-form-section,
.contact-info-section {
    background: rgba(26, 26, 26, 0.5);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 3, 94, 0.2);
}

.contact-form-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(252, 3, 94, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fc035e;
    box-shadow: 0 0 10px rgba(252, 3, 94, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #b0b0b0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #fc035e;
    border-radius: 4px;
    position: relative;
}

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

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

.form-submit {
    margin-top: 1rem;
}

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

.contact-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(252, 3, 94, 0.1);
}

.contact-item-detailed h3 {
    margin-bottom: 0.5rem;
    color: #fc035e;
}

.text-small {
    font-size: 0.9rem;
    color: #707070;
}

.office-hours,
.consultation-info {
    margin-bottom: 3rem;
}

.hours-list {
    background: rgba(15, 15, 15, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(252, 3, 94, 0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.consultation-features {
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(252, 3, 94, 0.1) 0%, rgba(3, 94, 252, 0.1) 100%);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.newsletter-inputs input {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(252, 3, 94, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(252, 3, 94, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 2rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-inputs {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 100px 20px 40px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .achievement-number,
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
    
    .newsletter-inputs {
        gap: 0.5rem;
    }
    [class*="-grid"] {
    grid-template-columns: 1fr;}
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .package-card,
    .review-card {
        border-width: 2px;
    }
}

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