:root {
--dark-graphite: #2b2d2f;
--metallic-silver: #c0c5ce;
--vivid-red: #e63946;
--light-gray: #e8eaed;
--white: #ffffff;
--text-dark: #1a1c1e;
--red-hover: #d62839;
--shadow: rgba(0, 0, 0, 0.15);
}

* {
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.7;
color: var(--text-dark);
background-color: var(--light-gray);
overflow-x: hidden;
}

.container-main {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.container-post {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}

.primary-nav {
background: linear-gradient(135deg, var(--dark-graphite) 0%, #1a1c1e 100%);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 12px var(--shadow);
}

.nav-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}

.brand-logo img {
height: 50px;
width: auto;
transition: transform 0.3s ease;
}

.brand-logo:hover img {
transform: scale(1.05);
}

.nav-links {
display: flex;
list-style: none;
gap: 35px;
}

.nav-links a {
color: var(--white);
text-decoration: none;
font-weight: 500;
font-size: 16px;
position: relative;
transition: color 0.3s ease;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 3px;
background: var(--vivid-red);
transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
color: var(--vivid-red);
}

.mobile-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.mobile-toggle span {
width: 28px;
height: 3px;
background: var(--white);
margin: 4px 0;
transition: 0.3s;
}

@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}

.nav-links {
position: absolute;
top: 80px;
left: 0;
right: 0;
background: var(--dark-graphite);
flex-direction: column;
padding: 20px;
gap: 15px;
display: none;
box-shadow: 0 4px 12px var(--shadow);
}

.nav-links.active {
display: flex;
}
}

.hero-banner {
height: 85vh;
background: linear-gradient(rgba(43, 45, 47, 0.6), rgba(43, 45, 47, 0.6)), url("../images/1.jpg") center/cover no-repeat fixed;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
color: var(--white);
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(43, 45, 47, 0.8) 0%, rgba(230, 57, 70, 0.3) 100%);
}

.hero-content {
position: relative;
z-index: 2;
animation: fadeInUp 1s ease;
}

.hero-content h1 {
font-size: 4rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
letter-spacing: 2px;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 35px;
color: var(--metallic-silver);
}

.cta-button {
display: inline-block;
padding: 16px 45px;
background: var(--vivid-red);
color: var(--white);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 18px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.cta-button:hover {
background: var(--red-hover);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(230, 57, 70, 0.6);
}

.cta-button-light {
display: inline-block;
padding: 16px 45px;
background: var(--white);
color: var(--vivid-red);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 18px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px var(--shadow);
}

.cta-button-light:hover {
background: var(--light-gray);
transform: translateY(-3px);
box-shadow: 0 10px 30px var(--shadow);
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.intro-section {
padding: 80px 0;
background: var(--white);
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.intro-text h2 {
font-size: 2.5rem;
color: var(--dark-graphite);
margin-bottom: 25px;
}

.intro-text p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #555;
}

.benefits-list {
list-style: none;
margin: 30px 0;
}

.benefits-list li {
padding: 12px 0;
padding-left: 35px;
position: relative;
font-size: 1.05rem;
}

.benefits-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--vivid-red);
font-weight: bold;
font-size: 1.3rem;
}

.intro-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 30px var(--shadow);
transition: transform 0.3s ease;
}

.intro-image img:hover {
transform: scale(1.03);
}

.secondary-btn {
display: inline-block;
padding: 12px 30px;
background: transparent;
color: var(--vivid-red);
border: 2px solid var(--vivid-red);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
margin-top: 20px;
transition: all 0.3s ease;
}

.secondary-btn:hover {
background: var(--vivid-red);
color: var(--white);
}

.services-preview {
padding: 80px 0;
background: linear-gradient(135deg, var(--dark-graphite) 0%, #3a3c3e 100%) fixed;
color: var(--white);
}

.parallax-section {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.section-heading {
text-align: center;
font-size: 2.8rem;
margin-bottom: 50px;
color: var(--white);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
margin-bottom: 50px;
}

.service-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 35px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
border-color: var(--vivid-red);
}

.service-icon {
font-size: 3.5rem;
margin-bottom: 20px;
display: block;
}

.service-card h3 {
font-size: 1.6rem;
margin-bottom: 15px;
color: var(--white);
}

.service-card p {
margin-bottom: 20px;
line-height: 1.6;
}

.link-arrow {
color: var(--vivid-red);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.link-arrow:hover {
color: var(--white);
}

.text-center {
text-align: center;
margin-top: 40px;
}

.why-choose {
padding: 80px 0;
background: var(--white);
}

.why-choose .section-heading {
color: var(--dark-graphite);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 40px;
}

.feature-item {
text-align: center;
padding: 30px;
border-radius: 12px;
background: var(--light-gray);
transition: transform 0.3s ease;
}

.feature-item:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px var(--shadow);
}

.feature-number {
display: inline-block;
width: 60px;
height: 60px;
background: var(--vivid-red);
color: var(--white);
border-radius: 50%;
line-height: 60px;
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 20px;
}

.feature-item h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--dark-graphite);
}

.feature-points {
list-style: none;
text-align: left;
margin-top: 15px;
}

.feature-points li {
padding: 8px 0;
padding-left: 25px;
position: relative;
}

.feature-points li::before {
content: '→';
position: absolute;
left: 0;
color: var(--vivid-red);
font-weight: bold;
}

.blog-preview {
padding: 80px 0;
background: linear-gradient(135deg, #1a1c1e 0%, var(--dark-graphite) 100%) fixed;
color: var(--white);
}

.blog-grid-home {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin-bottom: 50px;
}

.blog-card-home {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px var(--shadow);
transition: transform 0.3s ease;
}

.blog-card-home:hover {
transform: translateY(-10px);
}

.blog-card-home img {
width: 100%;
height: 220px;
object-fit: cover;
}

.blog-card-content {
padding: 25px;
}

.blog-card-content h3 {
font-size: 1.4rem;
margin-bottom: 12px;
}

.blog-card-content h3 a {
color: var(--dark-graphite);
text-decoration: none;
transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
color: var(--vivid-red);
}

.blog-excerpt {
color: #666;
margin-bottom: 15px;
}

.read-more {
color: var(--vivid-red);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.read-more:hover {
color: var(--red-hover);
}

.cta-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--vivid-red) 0%, var(--red-hover) 100%);
color: var(--white);
text-align: center;
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 35px;
}

.main-footer {
background: var(--dark-graphite);
color: var(--metallic-silver);
padding: 60px 0 30px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-col h4 {
color: var(--white);
margin-bottom: 20px;
font-size: 1.3rem;
}

.footer-col p {
line-height: 1.8;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: var(--metallic-silver);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--vivid-red);
}

.footer-contact {
list-style: none;
}

.footer-contact li {
margin-bottom: 15px;
line-height: 1.6;
}

.footer-contact a {
color: var(--metallic-silver);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-contact a:hover {
color: var(--vivid-red);
}

.tax-id {
margin-top: 15px;
font-size: 0.9rem;
color: #999;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(192, 197, 206, 0.2);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-graphite);
color: var(--white);
padding: 25px;
box-shadow: 0 -4px 20px var(--shadow);
z-index: 10000;
display: none;
animation: slideUp 0.4s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
margin-bottom: 15px;
font-size: 1.4rem;
}

.cookie-content p {
margin-bottom: 12px;
line-height: 1.6;
}

.cookie-details {
font-size: 0.9rem;
}

.cookie-details a {
color: var(--vivid-red);
text-decoration: underline;
}

.cookie-buttons {
margin-top: 20px;
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 28px;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-btn.accept {
background: var(--vivid-red);
color: var(--white);
}

.cookie-btn.accept:hover {
background: var(--red-hover);
}

.cookie-btn.reject {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.cookie-btn.reject:hover {
background: var(--white);
color: var(--dark-graphite);
}

.cookie-btn.customize {
background: var(--metallic-silver);
color: var(--dark-graphite);
}

.cookie-btn.customize:hover {
background: var(--white);
}

.page-hero {
height: 50vh;
background: linear-gradient(rgba(43, 45, 47, 0.7), rgba(43, 45, 47, 0.7)), url("../images/5.jpg") center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
color: var(--white);
}

.services-hero {
background-image: linear-gradient(rgba(43, 45, 47, 0.7), rgba(43, 45, 47, 0.7)), url("../images/5.jpg");
}

.blog-hero {
background-image: linear-gradient(rgba(43, 45, 47, 0.7), rgba(43, 45, 47, 0.7)), url("../images/2.jpg");
}

.about-hero {
background-image: linear-gradient(rgba(43, 45, 47, 0.7), rgba(43, 45, 47, 0.7)), url("../images/13.jpg");
}

.contact-hero {
background-image: linear-gradient(rgba(43, 45, 47, 0.7), rgba(43, 45, 47, 0.7)), url("../images/1.jpg");
}

.services-detailed {
padding: 80px 0;
background: var(--light-gray);
}

.service-detail-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-bottom: 60px;
background: var(--white);
padding: 40px;
border-radius: 12px;
box-shadow: 0 6px 25px var(--shadow);
align-items: center;
}

.service-detail-card.reverse {
grid-template-columns: 1fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
order: 2;
}

.service-detail-card.reverse .service-detail-text {
order: 1;
}

.service-detail-image img {
width: 100%;
border-radius: 10px;
box-shadow: 0 6px 20px var(--shadow);
}

.service-detail-text h3 {
font-size: 2rem;
color: var(--dark-graphite);
margin-bottom: 20px;
}

.service-detail-text p {
margin-bottom: 20px;
line-height: 1.7;
color: #555;
}

.service-list {
list-style: none;
margin: 25px 0;
}

.service-list li {
padding: 10px 0;
padding-left: 30px;
position: relative;
}

.service-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--vivid-red);
font-weight: bold;
font-size: 1.2rem;
}

.service-price {
font-size: 1.3rem;
color: var(--vivid-red);
font-weight: 700;
margin-top: 20px;
}

.service-process {
padding: 80px 0;
background: linear-gradient(135deg, #1a1c1e 0%, var(--dark-graphite) 100%) fixed;
color: var(--white);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}

.process-step {
text-align: center;
padding: 30px 20px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
width: 70px;
height: 70px;
background: var(--vivid-red);
color: var(--white);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: bold;
margin-bottom: 20px;
}

.process-step h4 {
font-size: 1.3rem;
margin-bottom: 12px;
}

.service-faq {
padding: 80px 0;
background: var(--white);
}

.service-faq .section-heading {
color: var(--dark-graphite);
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}

.faq-item {
background: var(--light-gray);
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--vivid-red);
}

.faq-item h4 {
color: var(--dark-graphite);
margin-bottom: 15px;
font-size: 1.2rem;
}

.blog-main {
padding: 80px 0;
background: var(--white);
}

.blog-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 60px;
}

.blog-intro h2 {
font-size: 2.5rem;
color: var(--dark-graphite);
margin-bottom: 20px;
}

.blog-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 40px;
}

.blog-post-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 25px var(--shadow);
transition: transform 0.3s ease;
}

.blog-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px var(--shadow);
}

.post-image {
position: relative;
}

.post-image img {
width: 100%;
height: 240px;
object-fit: cover;
}

.post-category {
position: absolute;
top: 15px;
left: 15px;
background: var(--vivid-red);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.post-content {
padding: 30px;
}

.post-content h3 {
font-size: 1.5rem;
margin-bottom: 15px;
}

.post-content h3 a {
color: var(--dark-graphite);
text-decoration: none;
transition: color 0.3s ease;
}

.post-content h3 a:hover {
color: var(--vivid-red);
}

.post-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 0.9rem;
color: #777;
}

.post-date,
.post-reading {
display: flex;
align-items: center;
gap: 5px;
}

.post-excerpt {
color: #555;
line-height: 1.7;
margin-bottom: 20px;
}

.btn-read-more {
color: var(--vivid-red);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.btn-read-more:hover {
color: var(--red-hover);
}

.blog-categories {
padding: 80px 0;
background: linear-gradient(135deg, var(--dark-graphite) 0%, #3a3c3e 100%) fixed;
color: var(--white);
}

.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.category-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 35px;
border-radius: 12px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}

.category-card:hover {
transform: translateY(-8px);
border-color: var(--vivid-red);
}

.category-icon {
font-size: 3rem;
display: block;
margin-bottom: 20px;
}

.category-card h4 {
font-size: 1.4rem;
margin-bottom: 12px;
}

.blog-newsletter {
padding: 80px 0;
background: var(--light-gray);
}

.newsletter-box {
max-width: 700px;
margin: 0 auto;
text-align: center;
background: var(--white);
padding: 50px;
border-radius: 12px;
box-shadow: 0 8px 30px var(--shadow);
}

.newsletter-box h3 {
font-size: 2rem;
color: var(--dark-graphite);
margin-bottom: 15px;
}

.newsletter-form {
display: flex;
gap: 15px;
margin-top: 30px;
}

.newsletter-form input {
flex: 1;
padding: 15px 20px;
border: 2px solid var(--metallic-silver);
border-radius: 50px;
font-size: 16px;
}

.newsletter-form input:focus {
outline: none;
border-color: var(--vivid-red);
}

.about-story {
padding: 80px 0;
background: var(--white);
}

.story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.story-text h2 {
font-size: 2.5rem;
color: var(--dark-graphite);
margin-bottom: 25px;
}

.story-text p {
margin-bottom: 20px;
line-height: 1.8;
color: #555;
}

.story-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 30px var(--shadow);
}

.team-section {
padding: 80px 0;
background: linear-gradient(135deg, #1a1c1e 0%, var(--dark-graphite) 100%) fixed;
color: var(--white);
}

.team-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
font-size: 1.1rem;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

.team-member {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}

.team-member:hover {
transform: translateY(-10px);
border-color: var(--vivid-red);
}

.team-member img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 20px;
}

.team-member h3 {
font-size: 1.5rem;
margin-bottom: 8px;
}

.team-position {
color: var(--vivid-red);
font-weight: 600;
margin-bottom: 15px;
}

.values-section {
padding: 80px 0;
background: var(--light-gray);
}

.values-section .section-heading {
color: var(--dark-graphite);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

.value-card {
background: var(--white);
padding: 40px;
border-radius: 12px;
box-shadow: 0 6px 25px var(--shadow);
text-align: center;
}

.value-icon {
font-size: 3.5rem;
margin-bottom: 20px;
}

.value-card h3 {
font-size: 1.6rem;
color: var(--dark-graphite);
margin-bottom: 20px;
}

.value-list {
list-style: none;
text-align: left;
}

.value-list li {
padding: 10px 0;
padding-left: 30px;
position: relative;
}

.value-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--vivid-red);
font-weight: bold;
font-size: 1.2rem;
}

.certifications {
padding: 80px 0;
background: linear-gradient(135deg, var(--vivid-red) 0%, var(--red-hover) 100%) fixed;
color: var(--white);
}

.cert-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.cert-content p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.cert-list {
list-style: none;
text-align: left;
display: inline-block;
}

.cert-list li {
padding: 12px 0;
padding-left: 35px;
position: relative;
font-size: 1.1rem;
}

.cert-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--white);
font-weight: bold;
font-size: 1.3rem;
}

.testimonials-section {
padding: 80px 0;
background: var(--white);
}

.testimonials-section .section-heading {
color: var(--dark-graphite);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.testimonial-card {
background: var(--light-gray);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--vivid-red);
}

.testimonial-rating {
color: #ffa500;
font-size: 1.2rem;
margin-bottom: 15px;
}

.testimonial-text {
font-style: italic;
line-height: 1.7;
margin-bottom: 20px;
color: #555;
}

.testimonial-author {
font-weight: 600;
color: var(--dark-graphite);
}

.contact-main {
padding: 80px 0;
background: var(--white);
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
}

.contact-info-section h2 {
font-size: 2.2rem;
color: var(--dark-graphite);
margin-bottom: 30px;
}

.contact-details {
margin-bottom: 40px;
}

.contact-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
align-items: flex-start;
}

.contact-icon {
font-size: 2rem;
color: var(--vivid-red);
}

.contact-text h4 {
font-size: 1.2rem;
color: var(--dark-graphite);
margin-bottom: 8px;
}

.contact-text p,
.contact-text a {
color: #555;
text-decoration: none;
line-height: 1.7;
}

.contact-text a:hover {
color: var(--vivid-red);
}

.opening-hours {
list-style: none;
}

.opening-hours li {
padding: 5px 0;
}

.contact-extra-info {
background: var(--light-gray);
padding: 25px;
border-radius: 10px;
border-left: 4px solid var(--vivid-red);
}

.contact-extra-info h3 {
color: var(--dark-graphite);
margin-bottom: 12px;
font-size: 1.3rem;
}

.contact-form-section h2 {
font-size: 2.2rem;
color: var(--dark-graphite);
margin-bottom: 30px;
}

.contact-form {
background: var(--light-gray);
padding: 40px;
border-radius: 12px;
}

.form-group {
margin-bottom: 25px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(--dark-graphite);
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 14px 18px;
border: 2px solid var(--metallic-silver);
border-radius: 8px;
font-size: 16px;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--vivid-red);
}

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-right: 10px;
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--vivid-red);
text-decoration: underline;
}

.map-section {
padding: 80px 0;
background: var(--light-gray);
}

.map-section .section-heading {
color: var(--dark-graphite);
}

.map-container {
margin-bottom: 40px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px var(--shadow);
}

.map-container iframe {
display: block;
}

.directions-info {
max-width: 800px;
margin: 0 auto;
background: var(--white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 6px 25px var(--shadow);
}

.directions-info h3 {
font-size: 1.8rem;
color: var(--dark-graphite);
margin-bottom: 20px;
}

.directions-list {
list-style: none;
}

.directions-list li {
padding: 12px 0;
padding-left: 30px;
position: relative;
line-height: 1.6;
}

.directions-list li::before {
content: '→';
position: absolute;
left: 0;
color: var(--vivid-red);
font-weight: bold;
font-size: 1.2rem;
}

.contact-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--dark-graphite) 0%, #3a3c3e 100%) fixed;
color: var(--white);
text-align: center;
}

.contact-cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.contact-cta p {
font-size: 1.2rem;
margin-bottom: 35px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
}

.modal-overlay.show {
display: flex;
}

.modal-content {
background: var(--white);
padding: 50px;
border-radius: 12px;
text-align: center;
max-width: 500px;
animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

.modal-icon {
width: 80px;
height: 80px;
background: var(--vivid-red);
color: var(--white);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin-bottom: 25px;
}

.modal-content h2 {
font-size: 2rem;
color: var(--dark-graphite);
margin-bottom: 15px;
}

.modal-content p {
color: #555;
margin-bottom: 30px;
line-height: 1.7;
}

.blog-post {
background: var(--white);
}

.post-hero {
height: 60vh;
background-size: cover;
background-position: center;
position: relative;
display: flex;
align-items: center;
color: var(--white);
}

.post-hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(rgba(43, 45, 47, 0.7), rgba(43, 45, 47, 0.7));
}

.post-hero-content {
position: relative;
z-index: 2;
}

.post-category-badge {
display: inline-block;
background: var(--vivid-red);
color: var(--white);
padding: 8px 20px;
border-radius: 25px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 20px;
}

.post-hero-content h1 {
font-size: 3rem;
margin-bottom: 20px;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.post-meta-header {
display: flex;
gap: 25px;
font-size: 0.95rem;
}

.post-content {
padding: 80px 0;
}

.post-intro {
margin-bottom: 40px;
}

.lead-text {
font-size: 1.3rem;
line-height: 1.8;
color: #555;
font-style: italic;
border-left: 4px solid var(--vivid-red);
padding-left: 25px;
}

.post-content h2 {
font-size: 2.2rem;
color: var(--dark-graphite);
margin-top: 50px;
margin-bottom: 25px;
}

.post-content h3 {
font-size: 1.7rem;
color: var(--dark-graphite);
margin-top: 40px;
margin-bottom: 20px;
}

.post-content p {
margin-bottom: 20px;
line-height: 1.8;
font-size: 1.05rem;
color: #444;
}

.post-content img.post-image {
width: 100%;max-width: 100%;
border-radius: 12px;
margin: 40px 0;
box-shadow: 0 8px 30px var(--shadow);
}

.styled-list {
list-style: none;
margin: 25px 0;
}

.styled-list li {
padding: 12px 0;
padding-left: 35px;
position: relative;
line-height: 1.7;
}

.styled-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--vivid-red);
font-weight: bold;
font-size: 1.3rem;
}

.post-conclusion {
background: var(--light-gray);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--vivid-red);
margin-top: 50px;
}

.post-conclusion h3 {
color: var(--dark-graphite);
margin-top: 0;
margin-bottom: 15px;
}

.post-navigation {
background: var(--light-gray);
padding: 40px 0;
}

.post-navigation .container-main {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.back-to-blog {
color: var(--dark-graphite);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.back-to-blog:hover {
color: var(--vivid-red);
}

.post-nav-links {
display: flex;
gap: 20px;
}

.prev-post,
.next-post {
padding: 10px 20px;
background: var(--white);
color: var(--dark-graphite);
text-decoration: none;
border-radius: 25px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px var(--shadow);
}

.prev-post:hover,
.next-post:hover {
background: var(--vivid-red);
color: var(--white);
transform: translateY(-3px);
}

.related-posts {
padding: 80px 0;
background: var(--white);
}

.related-posts h2 {
text-align: center;
font-size: 2.5rem;
color: var(--dark-graphite);
margin-bottom: 50px;
}

.related-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.related-card {
background: var(--light-gray);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 25px var(--shadow);
transition: transform 0.3s ease;
}

.related-card:hover {
transform: translateY(-8px);
}

.related-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.related-card h3 {
padding: 20px;
font-size: 1.3rem;
}

.related-card h3 a {
color: var(--dark-graphite);
text-decoration: none;
transition: color 0.3s ease;
}

.related-card h3 a:hover {
color: var(--vivid-red);
}

.read-more-link {
display: block;
padding: 0 20px 20px;
color: var(--vivid-red);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.read-more-link:hover {
color: var(--red-hover);
}

.services-intro {
padding: 60px 0;
background: var(--light-gray);
}

.intro-content-centered {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.intro-content-centered h2 {
font-size: 2.5rem;
color: var(--dark-graphite);
margin-bottom: 20px;
}

.intro-content-centered p {
font-size: 1.1rem;
line-height: 1.8;
color: #555;
}

@media (max-width: 992px) {
.intro-grid,
.story-grid,
.service-detail-card {
grid-template-columns: 1fr;
gap: 40px;
}

.service-detail-card.reverse .service-detail-image,
.service-detail-card.reverse .service-detail-text {
order: unset;
}

.contact-layout {
grid-template-columns: 1fr;
}

.hero-content h1 {
font-size: 3rem;
}
}

@media (max-width: 768px) {
.hero-content h1 {
font-size: 2.2rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.section-heading {
font-size: 2.2rem;
}

.services-grid,
.features-grid,
.blog-grid-home,
.team-grid,
.values-grid,
.categories-grid {
grid-template-columns: 1fr;
}

.newsletter-form {
flex-direction: column;
}

.post-hero-content h1 {
font-size: 2rem;
}

.post-meta-header {
flex-direction: column;
gap: 10px;
}

.post-nav-links {
flex-direction: column;
width: 100%;
}

.prev-post,
.next-post {
width: 100%;
text-align: center;
}

.cookie-buttons {
flex-direction: column;
}

.cookie-btn {
width: 100%;
}
}

@media (max-width: 576px) {
.hero-banner,
.page-hero {
height: 60vh;
}

.hero-content h1 {
font-size: 1.8rem;
}

.cta-button,
.cta-button-light {
padding: 14px 30px;
font-size: 16px;
}

.section-heading {
font-size: 1.8rem;
}

.footer-grid {
grid-template-columns: 1fr;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
