:root {
 --bg-color: #e6e7ee;
 --primary-color: #374151; /* Charcoal */
 --secondary-color: #ca8a04; /* Gold */
 --accent-color: #fef3c7; /* Warm Beige */
 --text-dark: #374151;
 --text-light: #555;
 --shadow-light: #ffffff;
 --shadow-dark: #babecc;
 --font-family: 'Montserrat', sans-serif;
 --transition: all 0.3s ease-in-out;
}

*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-family);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background-color: var(--bg-color);
 -webkit-font-smoothing: antialiased;
}

.container {
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 15px;
 padding-right: 15px;
}

h1, h2, h3, h4 {
 color: var(--text-dark);
 font-weight: 700;
 line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }

a {
 color: var(--secondary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover {
 color: var(--text-dark);
}

.section {
 padding: 80px 0;
}

.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 60px auto;
}

.section-tag {
 display: inline-block;
 color: var(--secondary-color);
 font-weight: 600;
 margin-bottom: 1rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}

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

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

/* Neomorphic Buttons */
.btn {
 display: inline-block;
 padding: 15px 30px;
 border-radius: 50px;
 font-weight: 600;
 font-size: 1rem;
 border: none;
 cursor: pointer;
 transition: var(--transition);
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}

.btn:active {
 box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
}

.btn-primary {
 background-color: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background-color: #4b5563;
 color: white;
}

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

/* Header */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background-color: var(--bg-color);
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
 transition: background-color 0.3s;
}

.header.scrolled {
 background-color: var(--bg-color);
}

.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 80px;
}

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
 box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
 padding: 10px 15px;
 border-radius: 10px;
}
.nav-logo:hover {
 box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 30px;
}

.nav-links a {
 color: var(--text-light);
 font-weight: 500;
 padding: 8px 16px;
 border-radius: 10px;
}

.nav-links a.active, .nav-links a:hover {
 color: var(--primary-color);
 box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
}

.nav-toggle {
 display: none;
 background: transparent;
 border: none;
 cursor: pointer;
 z-index: 1001;
 padding: 10px;
 border-radius: 10px;
 box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}
.nav-toggle:active {
 box-shadow: inset 1px 1px 2px var(--shadow-dark), inset -1px -1px 2px var(--shadow-light);
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background-color: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

/* Hero Section */
.hero {
 min-height: 80vh;
 display: flex;
 align-items: center;
 justify-content: center;
 background-size: cover;
 background-position: center;
 position: relative;
 padding: 100px 0 50px;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(230, 231, 238, 0.5); /* Light overlay for neomorphism */
 backdrop-filter: blur(2px);
}
.hero-content {
 position: relative;
 z-index: 1;
 text-align: center;
}
.hero-card {
 background: var(--bg-color);
 padding: 40px;
 border-radius: 20px;
 box-shadow: 10px 10px 20px var(--shadow-dar-k), -10px -10px 20px var(--shadow-light);
 max-width: 800px;
 margin: 0 auto;
}
.hero-title {
 color: var(--primary-color);
 margin-bottom: 1rem;
}
.hero-subtitle {
 font-size: 1.2rem;
 margin-bottom: 2rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}
.hero-buttons {
 display: flex;
 justify-content: center;
 gap: 20px;
}

/* Services section */
.services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.service-card {
 background: var(--bg-color);
 padding: 30px;
 border-radius: 20px;
 text-align: center;
 box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
 transition: var(--transition);
}
.service-card:hover {
 transform: translateY(-5px);
}
.card-icon {
 width: 60px;
 height: 60px;
 margin: 0 auto 20px auto;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}
.card-icon svg {
 width: 28px;
 height: 28px;
 color: var(--secondary-color);
}
.card-title {
 margin-bottom: 10px;
}

/* Process section */
.process-section {
 background-color: #dde1e7; /* slightly different bg for contrast */
}
.process-timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
 position: relative;
}
.process-timeline::before {
 content: '';
 position: absolute;
 top: 30px;
 left: 5%;
 right: 5%;
 height: 4px;
 background: var(--bg-color);
 box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
 border-radius: 2px;
}
.timeline-item {
 text-align: center;
 position: relative;
 padding-top: 60px;
}
.timeline-step {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background: var(--bg-color);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--secondary-color);
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
 position: absolute;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
}
.timeline-title {
 margin-bottom: 0.5rem;
}

/* About Section on Homepage */
.about-section .container {
 background-color: var(--bg-color);
 border-radius: 20px;
 padding: 50px;
 box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
}
.about-container {
 display: flex;
 gap: 40px;
 align-items: center;
}
.about-image-wrapper {
 flex: 1;
 min-width: 0;
}
.about-image {
 width: 100%;
 border-radius: 20px;
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}
.about-content {
 flex: 1.2;
}
.about-content ul {
 list-style: none;
 padding: 0;
 margin: 20px 0;
}
.about-content li {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 10px;
}
.about-content li svg {
 width: 20px;
 height: 20px;
 color: var(--secondary-color);
}

/* Testimonials */
.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.testimonial-card {
 background: var(--bg-color);
 padding: 30px;
 border-radius: 20px;
 box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
}
.testimonial-text {
 margin-bottom: 20px;
 font-style: italic;
}
.testimonial-author {
 display: flex;
 align-items: center;
 gap: 15px;
}
.author-img {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 object-fit: cover;
 box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}
.author-name {
 font-weight: 700;
 color: var(--text-dark);
 display: block;
}

/* CTA Section */
.cta-section {
 background-color: var(--bg-color);
}
.cta-container {
 display: flex;
 align-items: center;
 gap: 40px;
 padding: 50px;
 border-radius: 20px;
 box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
}
.cta-content { flex: 1; }
.cta-image-wrapper { flex: 0.8; }
.cta-image {
 width: 100%;
 border-radius: 20px;
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}
.cta-title { color: var(--primary-color); }
.btn-cta { margin-top: 20px; }

/* Footer */
.footer {
 padding: 60px 0 30px;
 background-color: #dde1e7;
 margin-top: 80px;
 color: var(--text-light);
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 1rem;
 display: inline-block;
}
.footer-heading {
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 1.5rem;
 text-transform: uppercase;
}
.footer-links, .footer-contact, .footer-hours {
 list-style: none;
}
.footer-links li, .footer-contact li, .footer-hours li {
 margin-bottom: 1rem;
}
.footer-links a, .footer-contact a {
 color: var(--text-light);
}
.footer-links a:hover, .footer-contact a:hover {
 color: var(--primary-color);
}
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { width: 18px; margin-top: 4px; color: var(--secondary-color); }
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 30px;
 border-top: 1px solid var(--shadow-dark);
}
.footer-legal {
 display: flex;
 gap: 20px;
 list-style: none;
}
.footer-legal a { font-size: 0.9rem; color: var(--text-light); }

/* Page Header */
.page-header-section {
 padding: 120px 0 60px;
 text-align: center;
}
.page-header-content {
 background: var(--bg-color);
 padding: 40px;
 border-radius: 20px;
 box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
 max-width: 900px;
 margin: 0 auto;
}
.page-header-content h1 { color: var(--primary-color); }
.page-header-content p { font-size: 1.2rem; }

/* Uslugi Page */
.included-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.included-item {
 background: var(--bg-color);
 border-radius: 20px;
 box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
 overflow: hidden;
 text-align: center;
}
.included-item img {
 width: 100%;
 height: 220px;
 object-fit: cover;
}
.included-item h3 { padding: 20px 20px 10px; }
.included-item p { padding: 0 20px 20px; }

.additional-services-section { background-color: #dde1e7; }
.additional-services-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 30px;
}
.additional-card {
 background: var(--bg-color);
 padding: 25px;
 border-radius: 20px;
 box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
}

.media-object { display: flex; align-items: center; gap: 40px; }
.media-object.reverse { flex-direction: row-reverse; }
.media-visual { flex: 1; }
.media-visual img { width: 100%; border-radius: 20px; box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light); }
.media-copy { flex: 1.2; }
.media-copy ul { list-style: none; margin-top: 1rem; }
.media-copy li { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.media-copy svg { width: 20px; height: 20px; color: var(--secondary-color); }

/* O Nas Page */
.team-section { background-color: #dde1e7; }
.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.team-card {
 background: var(--bg-color);
 padding: 30px;
 border-radius: 20px;
 text-align: center;
 box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}
.team-name { margin-bottom: 5px; }
.team-role { font-weight: 600; color: var(--secondary-color); margin-bottom: 10px; }

.values-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
}
.value-item {
 background: var(--bg-color);
 padding: 25px;
 border-radius: 20px;
 text-align: center;
 box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
}

/* FAQ page */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category-title { margin-top: 40px; margin-bottom: 20px; border-bottom: 2px solid var(--shadow-dark); padding-bottom: 10px; }
.faq-item {
 background-color: var(--bg-color);
 border-radius: 12px;
 margin-bottom: 1rem;
 box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
}
.faq-item[open] summary {
 box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
}
.faq-question {
 padding: 20px;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 position: relative;
 list-style: none;
 color: var(--text-dark);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
 content: '+';
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 1.5rem;
 color: var(--secondary-color);
}
.faq-item[open] .faq-question::after { content: '-'; }
.faq-answer { padding: 0 20px 20px; }
.faq-contact-prompt { text-align: center; margin-top: 60px; padding: 40px; background-color: var(--bg-color); border-radius: 20px; box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light); }

/* Contact Page */
.contact-page-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 50px;
 background: var(--bg-color);
 padding: 50px;
 border-radius: 20px;
 box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}
.form-title, .info-title { margin-bottom: 2rem; color: var(--primary-color); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: .5rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea {
 width: 100%;
 padding: 15px;
 border-radius: 10px;
 border: none;
 background: var(--bg-color);
 box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
 color: var(--text-dark);
 font-family: var(--font-family);
 font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus { outline: none; }
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group input { width: auto; box-shadow: none; }
.contact-details-list { list-style: none; }
.contact-details-list li { display: flex; gap: 15px; margin-bottom: 1.5rem; }
.contact-details-list svg { width: 24px; color: var(--secondary-color); margin-top: 5px; }
.contact-details-list strong { color: var(--text-dark); display: block; }
.map-section { padding-top: 0; }
.map-container {
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

/* Legal & Thank You pages */
.legal-page .container, .thank-you-section .container {
 padding-top: 120px;
 padding-bottom: 60px;
}
.legal-page h2 { margin-top: 2rem; margin-bottom: 1rem; }
.legal-page ul { margin-left: 20px; margin-bottom: 1rem; }
.thank-you-card {
 background: var(--bg-color);
 padding: 50px;
 border-radius: 20px;
 box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
 max-width: 600px;
 margin: 40px auto;
 text-align: center;
}
.thank-you-icon {
 color: var(--secondary-color);
 width: 80px;
 height: 80px;
 margin: 0 auto 20px;
}
.text-center { text-align: center; }

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 background: var(--bg-color);
 padding: 20px;
 border-radius: 15px;
 box-shadow: 8px 8px 16px rgba(0,0,0,0.15);
 z-index: 1001;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 max-width: 600px;
 margin: 0 auto;
}
#cookie-banner p { margin: 0; }
.cookie-buttons { display: flex; gap: 10px; }
#cookie-banner .btn { padding: 10px 20px; font-size: 0.9rem; }

/* Form validation styles */
.input-error {
 box-shadow: inset 4px 4px 8px #f5b9b9, inset -4px -4px 8px #fdd, 0 0 0 2px #dc2626 !important;
}
.field-error {
 color: #c13535;
 font-size: 0.85rem;
 margin-top: 4px;
 font-weight: 500;
 animation: fadeIn 0.3s ease;
}
.form-success { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); }}

.spinner {
 display: inline-block; width: 16px; height: 16px;
 border: 2px solid rgba(255,255,255,0.3); border-radius: 50%;
 border-top-color: #fff; animation: spin 0.8s linear infinite;
 margin-right: 8px; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: 0.7; cursor: not-allowed;}

/* Responsive */
@media (max-width: 1024px) {
 .services-grid, .testimonials-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
 .process-timeline, .values-grid { grid-template-columns: repeat(2, 1fr); }
 .about-container, .cta-container, .media-object, .media-object.reverse { flex-direction: column; }
 .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background: var(--bg-color);
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 40px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 display: flex;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-toggle { display: block; }
 .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
 
 .services-grid, .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
 .process-timeline { grid-template-columns: 1fr; }
 .process-timeline::before { display: none; }
 #cookie-banner { flex-direction: column; text-align: center; }
}

.cookie-table-container {
 overflow-x: auto;
 margin: 2rem 0;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 background-color: var(--bg-color);
 box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
 border-radius: 10px;
 overflow: hidden;
}
.cookie-table th, .cookie-table td {
 padding: 12px 15px;
 text-align: left;
 border-bottom: 1px solid var(--shadow-dark);
}
.cookie-table th {
 background-color: #dde1e7;
 color: var(--text-dark);
}
.cookie-table tr:last-child td {
 border-bottom: none;
}