/* Base Styles */
:root {
  --primary-color: #a67c52;
  --secondary-color: #5d4037;
  --accent-color: #d7ccc8;
  --dark-bg: #1a1a1a;
  --dark-bg-lighter: #252525;
  --text-color: #ffffff;
  --text-color-muted: #b0b0b0;
  --border-color: #333333;
  --success-color: #4CAF50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-color-muted);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-tertiary {
  background-color: transparent;
  color: var(--text-color-muted);
}

.btn-tertiary:hover {
  color: var(--text-color);
}

.btn-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.btn-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Header */
header {
  background-color: var(--dark-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 150px;
}

.logo img {
  max-height: 60px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text-color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.5rem;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--text-color);
}

nav ul li a:hover::after, nav ul li a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg-lighter);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--dark-bg) 0%, rgba(26, 26, 26, 0) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 3rem;
}

.hero-image {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.hero-image img {
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading p {
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

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

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.service-card {
  background-color: var(--dark-bg);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

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

.service-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin-bottom: 0.5rem;
}

.overlay p {
  margin-bottom: 1.5rem;
}

.btn-overlay {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-overlay:hover {
  background-color: var(--text-color);
  color: var(--primary-color);
}

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.testimonial {
  background-color: var(--dark-bg);
  border-radius: 5px;
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-content p::before, .testimonial-content p::after {
  content: '"';
  color: var(--primary-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

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

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.blog-card {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.date {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.blog-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../images/cta-bg.jpg') no-repeat center center/cover;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  padding-top: 5rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-about {
  margin-bottom: 2rem;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-bg-lighter);
  margin-right: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-links h3, .footer-contact h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links ul li a {
  color: var(--text-color-muted);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact svg {
  margin-right: 0.5rem;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-policy-links a {
  margin-left: 1.5rem;
  color: var(--text-color-muted);
  font-size: 0.9rem;
}

.footer-policy-links a:hover {
  color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg-lighter);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-content p {
  margin-bottom: 1rem;
  text-align: center;
}

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

.cookie-link {
  font-size: 0.9rem;
  text-decoration: underline;
  color: var(--text-color-muted);
}

.cookie-link:hover {
  color: var(--primary-color);
}

/* Page Header */
.page-header {
  background-color: var(--dark-bg-lighter);
  padding: 5rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Layout */
.blog-content {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-post {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.blog-post-content {
  padding: 2rem;
  flex: 1;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.search-form {
  display: flex;
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--text-color);
}

.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  margin-bottom: 0.7rem;
}

.categories-widget ul li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color-muted);
}

.categories-widget ul li a:hover {
  color: var(--primary-color);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post {
  display: flex;
  gap: 1rem;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
}

.recent-post h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.recent-post span {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: var(--dark-bg);
  color: var(--text-color-muted);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 2px;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--text-color);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.pagination a, .pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0.2rem;
  border-radius: 3px;
  background-color: var(--dark-bg);
  color: var(--text-color-muted);
  transition: var(--transition);
}

.pagination a:hover, .pagination span.current-page {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.pagination .next, .pagination .prev {
  width: auto;
  padding: 0 1rem;
}

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Services Pages */
.services-overview {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

.services-intro {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.intro-content {
  flex: 1;
}

.intro-image {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
}

.services-detail {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.service-item {
  display: flex;
  margin-bottom: 5rem;
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  overflow: hidden;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 40%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 0 0 60%;
  padding: 3rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-features li svg {
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.service-price {
  background-color: var(--primary-color);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.process {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.process-step {
  display: flex;
  align-items: flex-start;
  background-color: var(--dark-bg);
  border-radius: 5px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

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

.pricing {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.pricing-card {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.pricing-card.featured {
  border-color: var(--primary-color);
}

.ribbon {
  position: absolute;
  top: 1.5rem;
  right: -5px;
  padding: 0.3rem 1rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 500;
}

.ribbon::before {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  top: 100%;
  right: 0;
  border-top: 5px solid var(--secondary-color);
  border-right: 5px solid transparent;
}

.pricing-header {
  margin-bottom: 2rem;
}

.price {
  margin-top: 1rem;
}

.price .amount {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.price .period {
  font-size: 0.9rem;
  color: var(--text-color-muted);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-features li.disabled {
  color: var(--text-color-muted);
  opacity: 0.6;
}

.pricing-features li svg {
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color-muted);
}

.faq {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.faq-item {
  background-color: var(--dark-bg);
  border-radius: 5px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.faq-question {
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  font-size: 1.3rem;
}

.faq-answer {
  display: block;
}

/* Gallery Pages */
.gallery-filter {
  padding: 2rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--text-color-muted);
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-color);
  border-color: var(--primary-color);
}

.gallery {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 5px;
  overflow: hidden;
}

.gallery-image {
  position: relative;
  height: 300px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
}

.gallery-zoom {
  background-color: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.gallery-zoom:hover {
  background-color: var(--secondary-color);
}

.lightbox-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

.lightbox-image {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-caption {
  margin: auto;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  height: 150px;
}

.lightbox-prev, .lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.lightbox-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.project-details {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

.project-showcase {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.project-card {
  display: flex;
  background-color: var(--dark-bg);
  border-radius: 5px;
  overflow: hidden;
}

.project-card.reverse {
  flex-direction: row-reverse;
}

.project-image {
  flex: 0 0 50%;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  flex: 0 0 50%;
  padding: 2.5rem;
}

.project-location {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.project-description {
  margin-bottom: 1.5rem;
}

.project-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.project-features li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
}

.project-features li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.process-snapshot {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.process-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-image {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
}

.process-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}

.process-caption {
  margin-top: 1rem;
}

.process-caption h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Contact Page */
.contact-section {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.contact-description {
  font-size: 1.1rem;
}

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

.contact-form-container {
  background-color: var(--dark-bg-lighter);
  padding: 2.5rem;
  border-radius: 5px;
}

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

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

.form-group.full-width {
  grid-column: 1 / 3;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
  color: var(--text-color);
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
}

.consent-checkbox input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.consent-checkbox label {
  font-size: 0.9rem;
  color: var(--text-color-muted);
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
}

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

.info-icon svg {
  width: 48px;
  height: 48px;
}

.info-card h4 {
  margin-bottom: 0.5rem;
}

.info-card p {
  margin-bottom: 0.3rem;
}

.info-note {
  font-size: 0.85rem;
  color: var(--text-color-muted);
}

.social-contact {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
}

.social-contact h4 {
  margin-bottom: 1rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

.map-container {
  height: 450px;
  border-radius: 5px;
  overflow: hidden;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.thank-you-content {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 2.5rem;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-color-muted);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* About Page */
.about-intro {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.about-image img {
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.values {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.value-card {
  background-color: var(--dark-bg);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

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

.team {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.team-member {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3, .team-member p {
  padding: 0 1.5rem;
}

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}

.team-member p:nth-of-type(1) {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.team-member p:last-child {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.achievements {
  padding: 5rem 0;
  background-color: var(--dark-bg-lighter);
}

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

.achievement-card {
  background-color: var(--dark-bg);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

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

.achievement-card h3 {
  margin-bottom: 0.5rem;
}

.mission-vision {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.mission-box, .vision-box {
  background-color: var(--dark-bg-lighter);
  border-radius: 5px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.mission-box:hover, .vision-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.mission-icon, .vision-icon {
  margin-bottom: 1.5rem;
}

.mission-box h2, .vision-box h2 {
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content, .hero-image {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .services-intro {
    flex-direction: column;
  }

  .service-item, .service-item.reverse {
    flex-direction: column;
  }

  .service-image {
    flex: 0 0 100%;
    height: 300px;
  }

  .service-content {
    flex: 0 0 100%;
  }

  .project-card, .project-card.reverse {
    flex-direction: column;
  }

  .project-image, .project-content {
    flex: 0 0 100%;
  }

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

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

  .form-group.full-width {
    grid-column: 1;
  }

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

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-bg);
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .features-grid, .services-grid, .portfolio-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-policy-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-policy-links a {
    margin-left: 0;
  }

  .process-images {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button {
    width: 100%;
  }
}
