:root {
--primary-color: hsl(220, 70%, 45%);
--primary-dark: hsl(220, 70%, 35%);
--primary-light: hsl(220, 70%, 95%);
--secondary-color: hsl(280, 60%, 50%);
--accent-color: hsl(160, 70%, 45%);
--text-primary: #1a1a2e;
--text-secondary: #4a4a68;
--text-light: #ffffff;
--bg-primary: #ffffff;
--bg-secondary: #f8f9fa;
--bg-dark: #1a1a2e;
--border-color: #e0e0e0;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
--transition-base: all 0.3s ease;
--border-radius: 12px;
}

* {
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: var(--text-primary);
background-color: var(--bg-primary);
overflow-x: hidden;
}

.primary-navigation {
background: var(--bg-primary);
box-shadow: var(--shadow-md);
position: sticky;
top: 0;
z-index: 1000;
}

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

.brand-logo {
display: flex;
align-items: center;
gap: 1rem;
}

.brand-logo img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 50%;
}

.brand-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

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

.nav-menu a {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
transition: var(--transition-base);
display: flex;
align-items: center;
gap: 0.5rem;
}

.nav-menu a:hover,
.nav-menu a.active-link {
color: var(--primary-color);
}

.mobile-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
}

.mobile-toggle span {
width: 25px;
height: 3px;
background: var(--primary-color);
margin: 3px 0;
transition: var(--transition-base);
}

.hero-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-light);
padding: 6rem 2rem;
text-align: center;
}

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

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

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--text-light);
color: var(--primary-color);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition-base);
box-shadow: var(--shadow-lg);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
}

.section-heading {
font-size: 2.5rem;
font-weight: 700;
text-align: center;
margin-bottom: 3rem;
color: var(--primary-color);
}

.slider-section {
background: var(--bg-secondary);
padding: 4rem 0;
}

.image-slider {
position: relative;
max-width: 900px;
margin: 0 auto;
overflow: hidden;
border-radius: var(--border-radius);
}

.slider-track {
position: relative;
width: 100%;
height: 500px;
}

.slide {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.6s ease;
}

.slide.active-slide {
opacity: 1;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: var(--border-radius);
}

.slide-caption {
position: absolute;
bottom: 2rem;
left: 2rem;
background: rgba(0, 0, 0, 0.7);
color: var(--text-light);
padding: 1rem 2rem;
border-radius: 8px;
font-size: 1.2rem;
font-weight: 600;
}

.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.9);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
font-size: 1.5rem;
color: var(--primary-color);
transition: var(--transition-base);
z-index: 10;
}

.slider-btn:hover {
background: var(--text-light);
box-shadow: var(--shadow-md);
}

.prev-btn {
left: 1rem;
}

.next-btn {
right: 1rem;
}

.slider-indicators {
display: flex;
justify-content: center;
gap: 0.8rem;
margin-top: 1.5rem;
}

.indicator {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--border-color);
border: none;
cursor: pointer;
transition: var(--transition-base);
}

.indicator.active {
background: var(--primary-color);
width: 30px;
border-radius: 6px;
}

.services-section {
padding: 4rem 0;
}

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

.service-card {
background: var(--bg-primary);
padding: 2.5rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-sm);
transition: var(--transition-base);
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.service-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.service-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
}

.service-description {
color: var(--text-secondary);
margin-bottom: 1.5rem;
}

.service-features {
list-style: none;
}

.service-features li {
padding: 0.5rem 0;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 0.8rem;
}

.service-features i {
color: var(--accent-color);
}

.process-section {
background: var(--bg-secondary);
padding: 4rem 0;
}

.process-timeline {
max-width: 900px;
margin: 0 auto;
}

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

.timeline-number {
background: var(--primary-color);
color: var(--text-light);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
flex-shrink: 0;
}

.timeline-content {
flex: 1;
}

.timeline-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.8rem;
color: var(--primary-color);
}

.timeline-text {
color: var(--text-secondary);
line-height: 1.7;
}

.pricing-section {
padding: 4rem 0;
}

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

.pricing-card {
background: var(--bg-primary);
padding: 2.5rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-sm);
text-align: center;
transition: var(--transition-base);
position: relative;
}

.pricing-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.featured-pricing {
border: 3px solid var(--primary-color);
}

.popular-badge {
position: absolute;
top: -15px;
right: 20px;
background: var(--accent-color);
color: var(--text-light);
padding: 0.5rem 1.5rem;
border-radius: 20px;
font-weight: 600;
}

.pricing-title {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
}

.pricing-amount {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary-color);
margin-bottom: 2rem;
}

.pricing-features {
list-style: none;
margin-bottom: 2rem;
text-align: left;
}

.pricing-features li {
padding: 0.8rem 0;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 0.8rem;
}

.pricing-features i {
color: var(--accent-color);
}

.pricing-btn {
display: inline-block;
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--text-light);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: var(--transition-base);
}

.pricing-btn:hover {
background: var(--primary-dark);
}

.faq-section {
background: var(--bg-secondary);
padding: 4rem 0;
}

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

.faq-item {
background: var(--bg-primary);
margin-bottom: 1rem;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
}

.faq-question {
width: 100%;
padding: 1.5rem;
background: none;
border: none;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-primary);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition-base);
}

.faq-question:hover {
color: var(--primary-color);
}

.faq-question i {
transition: var(--transition-base);
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-answer p {
padding: 0 1.5rem 1.5rem;
color: var(--text-secondary);
line-height: 1.7;
}

.testimonials-section {
padding: 4rem 0;
}

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

.testimonial-card {
background: var(--bg-primary);
padding: 2.5rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-sm);
}

.testimonial-rating {
color: #ffc107;
margin-bottom: 1rem;
font-size: 1.2rem;
}

.testimonial-text {
color: var(--text-secondary);
font-style: italic;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.testimonial-author strong {
color: var(--primary-color);
display: block;
margin-bottom: 0.3rem;
}

.testimonial-author span {
color: var(--text-secondary);
font-size: 0.9rem;
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-light);
padding: 5rem 2rem;
text-align: center;
}

.cta-heading {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.cta-text {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-button-large {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--text-light);
color: var(--primary-color);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.2rem;
transition: var(--transition-base);
box-shadow: var(--shadow-lg);
}

.cta-button-large:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.site-footer {
background: var(--bg-dark);
color: var(--text-light);
padding: 4rem 2rem 2rem;
}

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

.footer-title {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--text-light);
}

.footer-text {
color: rgba(255, 255, 255, 0.8);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.footer-contact p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 0.8rem;
display: flex;
align-items: flex-start;
gap: 0.8rem;
}

.footer-contact i {
margin-top: 0.3rem;
color: var(--primary-light);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition-base);
}

.footer-links a:hover {
color: var(--text-light);
padding-left: 5px;
}

.footer-hours {
list-style: none;
color: rgba(255, 255, 255, 0.8);
}

.footer-hours li {
margin-bottom: 0.8rem;
}

.footer-bottom {
max-width: 1200px;
margin: 0 auto;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-primary);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
padding: 2rem;
z-index: 10000;
display: none;
}

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

.cookie-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--primary-color);
}

.cookie-text {
margin-bottom: 1.5rem;
color: var(--text-secondary);
line-height: 1.6;
}

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

.cookie-btn {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: var(--transition-base);
}

.cookie-btn.accept-all {
background: var(--primary-color);
color: var(--text-light);
}

.cookie-btn.accept-all:hover {
background: var(--primary-dark);
}

.cookie-btn.customize {
background: var(--bg-secondary);
color: var(--text-primary);
}

.cookie-btn.customize:hover {
background: var(--border-color);
}

.cookie-btn.decline {
background: transparent;
color: var(--text-secondary);
border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
border-color: var(--text-secondary);
}

.cookie-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
}

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

.cookie-settings-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 10001;
padding: 1rem;
}

.modal-content {
background: var(--bg-primary);
padding: 3rem;
border-radius: var(--border-radius);
max-width: 600px;
width: 100%;
position: relative;
max-height: 90vh;
overflow-y: auto;
}

.modal-close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
font-size: 2rem;
cursor: pointer;
color: var(--text-secondary);
}

.modal-title {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 2rem;
color: var(--primary-color);
}

.cookie-category {
margin-bottom: 2rem;
}

.cookie-toggle {
display: flex;
align-items: flex-start;
gap: 1rem;
cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
position: absolute;
opacity: 0;
}

.toggle-slider {
width: 50px;
height: 26px;
background: var(--border-color);
border-radius: 13px;
position: relative;
transition: var(--transition-base);
flex-shrink: 0;
}

.toggle-slider::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
background: var(--text-light);
border-radius: 50%;
top: 3px;
left: 3px;
transition: var(--transition-base);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
background: var(--primary-color);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::after {
left: 27px;
}

.category-info strong {
display: block;
margin-bottom: 0.3rem;
color: var(--text-primary);
}

.category-info p {
color: var(--text-secondary);
font-size: 0.9rem;
}

.modal-buttons {
margin-top: 2rem;
}

.cookie-btn.accept-selected {
background: var(--primary-color);
color: var(--text-light);
padding: 1rem 2rem;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2.5rem;
}

.blog-card {
background: var(--bg-primary);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition-base);
}

.blog-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.blog-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.blog-content {
padding: 2rem;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
color: var(--text-secondary);
font-size: 0.9rem;
flex-wrap: wrap;
}

.blog-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
}

.blog-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-primary);
line-height: 1.3;
}

.blog-excerpt {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: var(--transition-base);
}

.read-more:hover {
gap: 1rem;
}

.about-intro {
max-width: 900px;
margin: 0 auto 4rem;
text-align: center;
}

.about-intro p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-secondary);
margin-bottom: 1.5rem;
}

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

.team-member {
text-align: center;
}

.team-photo {
width: 100%;
max-width: 300px;
height: 300px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 1.5rem;
box-shadow: var(--shadow-md);
}

.team-name {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--primary-color);
}

.team-position {
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 1rem;
}

.team-bio {
color: var(--text-secondary);
line-height: 1.7;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.contact-info p {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 2rem;
}

.info-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
}

.info-icon {
font-size: 2rem;
color: var(--primary-color);
width: 50px;
flex-shrink: 0;
}

.info-details h3 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--text-primary);
}

.info-details p {
color: var(--text-secondary);
margin-bottom: 0.3rem;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 1rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

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

.submit-btn {
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--text-light);
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: var(--transition-base);
}

.submit-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}

.success-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
padding: 1rem;
}

.success-content {
background: var(--bg-primary);
padding: 3rem;
border-radius: var(--border-radius);
text-align: center;
max-width: 500px;
}

.success-icon {
font-size: 4rem;
color: var(--accent-color);
margin-bottom: 1.5rem;
}

.success-content h3 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--primary-color);
}

.success-content p {
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.6;
}

.success-btn {
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--text-light);
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: var(--transition-base);
}

.success-btn:hover {
background: var(--primary-dark);
}

@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-primary);
flex-direction: column;
padding: 2rem;
box-shadow: var(--shadow-lg);
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.nav-menu.active {
max-height: 500px;
}

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

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

.section-heading {
font-size: 2rem;
}

.services-grid,
.pricing-grid,
.testimonials-grid,
.blog-grid,
.team-grid {
grid-template-columns: 1fr;
}

.contact-container {
grid-template-columns: 1fr;
gap: 3rem;
}

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

.slider-track {
height: 350px;
}

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

.modal-content {
padding: 2rem;
}
}

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

.nav-container {
padding: 1rem;
}

.content-wrapper {
padding: 3rem 1rem;
}

.cta-button,
.cta-button-large {
padding: 0.9rem 2rem;
font-size: 1rem;
}
}