/* ===== Base Styles ===== */
:root {
  --primary-color: #d1a775;
  --primary-dark: #b8916a;
  --secondary-color: #2c3e50;
  --accent-color: #e67e22;
  --light-color: #ecf0f1;
  --dark-color: #1e272e;
  --text-color: #333;
  --text-light: #f5f5f5;
  --border-color: #ddd;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #121212;
  color: var(--text-light);
}

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

button, .btn-primary, .btn-secondary {
  cursor: pointer;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

.slogan {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px var(--shadow-color);
  color: white;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: var(--text-light);
}

.section-title:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.alt-background {
  background-color: #1a1a1a;
}

/* ===== Header ===== */
header {
  background-color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.navbar {
  display: flex;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar a:hover, .navbar a.active {
  color: var(--primary-color);
}

.navbar a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar a:hover:after, .navbar a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin-bottom: 5px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 85vh;
  background: url('images/1.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== Featured Services Section ===== */
.featured-services {
  padding: 5rem 0;
}

.featured-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.service-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 20px 20px 10px;
}

.service-card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.service-card .btn-secondary {
  margin: 0 20px 20px;
}

/* Tooltip for service cards */
.service-card[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  border-radius: 5px 5px 0 0;
  z-index: 5;
}

.service-card:hover[data-tooltip]:before {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Recent Projects Section ===== */
.recent-projects {
  padding: 5rem 0;
  background-color: #1a1a1a;
}

.recent-projects h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

.project-slider {
  display: flex;
  overflow: hidden;
  position: relative;
}

.project {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .project {
    flex-direction: row;
    gap: 30px;
  }
}

.project img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .project img {
    width: 50%;
    max-height: 400px;
    object-fit: cover;
  }
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.project-info p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.prev-btn, .next-btn {
  background-color: #333;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #666;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
}

/* ===== Latest Blog Section ===== */
.latest-blog {
  padding: 5rem 0;
}

.latest-blog h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.blog-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.date {
  display: inline-block;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.read-more:after {
  content: '→';
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover:after {
  transform: translateX(5px);
}

.latest-blog .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 5rem 0;
  background-color: #1a1a1a;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
}

.testimonial {
  min-width: 100%;
  padding: 30px;
  background-color: #222;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote {
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial p {
  margin: 30px 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.client-info p {
  margin: 0;
  color: #888;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
footer {
  background-color: #111;
  color: var(--text-light);
  padding-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 2rem;
}

.footer-col h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.footer-col svg {
  margin-right: 10px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  background-color: #333;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* ===== Cookie Notice ===== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

#customize-cookies, #reject-cookies {
  background-color: #333;
  color: white;
}

#customize-cookies:hover, #reject-cookies:hover {
  background-color: #444;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 0.9rem;
}

/* ===== Page Header ===== */
.page-header {
  background-color: #1a1a1a;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ===== Services Page ===== */
.services-introduction {
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

.intro-content {
  flex: 1;
  padding-right: 30px;
}

.intro-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.intro-content p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail {
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.service-features svg {
  color: var(--primary-color);
  margin-right: 10px;
}

.service-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 0 0 0 30px;
}

.service-gallery img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.service-gallery img:first-child {
  grid-column: 1 / span 2;
}

.service-detail.alt-background {
  background-color: #1a1a1a;
}

.service-detail.alt-background .service-content {
  order: 2;
  padding-left: 30px;
}

.service-detail.alt-background .service-gallery {
  order: 1;
  padding: 0 30px 0 0;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.pricing-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
  background-color: #1a1a1a;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.price {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
  padding: 20px;
}

.pricing-features ul {
  margin-bottom: 20px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn-secondary, .pricing-card .btn-primary {
  display: block;
  margin: 20px auto;
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  text-align: center;
  background-color: #1a1a1a;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

.cta p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Gallery Page ===== */
.gallery-filters {
  padding-top: 3rem;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter {
  padding: 8px 16px;
  background-color: #222;
  border: none;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.gallery {
  padding: 3rem 0 5rem;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

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

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-info {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 5px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.view-project {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.view-project:hover {
  background-color: var(--primary-dark);
}

/* Project Modal */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  overflow-y: auto;
}

.modal-content {
  background-color: #1a1a1a;
  margin: 50px auto;
  max-width: 1000px;
  border-radius: 8px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.modal-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

@media (min-width: 768px) {
  .modal-body {
    flex-direction: row;
  }
}

.project-slider {
  flex: 1;
  position: relative;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .project-slider {
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.project-slider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.project-details {
  flex: 1;
}

.project-details h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.project-location {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.project-info {
  margin-bottom: 20px;
}

.project-info h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.project-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.project-info ul {
  list-style: disc;
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.project-info ul li {
  margin-bottom: 5px;
}

.featured-projects {
  padding: 5rem 0;
}

.projects-slider {
  position: relative;
  overflow: hidden;
}

.project-slide {
  display: none;
}

.project-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .project-slide.active {
    flex-direction: row;
    gap: 30px;
  }
}

.project-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .project-slide img {
    width: 50%;
    height: 400px;
    margin-bottom: 0;
  }
}

.project-slide-info {
  flex: 1;
}

.project-slide-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.project-slide-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.project-slide-info ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.project-slide-info ul li {
  margin-bottom: 5px;
}

/* ===== Blog Page ===== */
.blog-content {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-post {
  display: flex;
  flex-direction: column;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .blog-post {
    flex-direction: row;
  }
}

.post-image {
  flex: 1;
}

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

.post-content {
  flex: 2;
  padding: 20px;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.post-meta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.category {
  background-color: var(--primary-color);
  color: white !important;
  padding: 3px 10px;
  border-radius: 4px;
}

.post-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.post-content p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.pagination a.next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

.pagination a:hover, .pagination a.active {
  background-color: var(--primary-color);
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: #222;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
}

.sidebar-widget h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Search Widget */
.search-form {
  display: flex;
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #333;
  color: white;
}

.search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

/* Categories Widget */
.categories-widget ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.categories-widget li a {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

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

/* Popular Posts Widget */
.widget-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-post {
  display: flex;
  align-items: center;
  gap: 15px;
}

.widget-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.widget-post-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.widget-post-info h4 a {
  color: var(--text-light);
}

.widget-post-info h4 a:hover {
  color: var(--primary-color);
}

.widget-post-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  background-color: #333;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tag-cloud a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Newsletter Widget */
.newsletter-widget p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 15px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #333;
  color: white;
}

/* ===== About Page ===== */
.about-intro {
  padding: 5rem 0;
}

.about-intro .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .about-intro .container {
    flex-direction: row;
  }
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.about-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.about-image {
  flex: 1;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .about-image {
    margin-top: 0;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team {
  padding: 5rem 0;
  background-color: #1a1a1a;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.team-member {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.1);
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.member-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.member-info p:first-of-type {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.member-info .social-icons {
  margin-top: 15px;
}

.values {
  padding: 5rem 0;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.value-card {
  background-color: #222;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
}

.why-choose-us {
  padding: 5rem 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.feature {
  background-color: #222;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
}

.awards-certifications {
  padding: 5rem 0;
}

.awards-certifications h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.award {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.award img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.award h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  padding: 20px 20px 10px;
}

.award p {
  color: rgba(255, 255, 255, 0.8);
  padding: 0 20px 20px;
}

/* ===== Contact Page ===== */
.contact-info {
  padding-top: 4rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background-color: #222;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.info-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.contact-form-section {
  padding: 5rem 0;
}

.contact-form-section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-form-section .container {
    grid-template-columns: 3fr 2fr;
  }
}

.form-container {
  background-color: #222;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #333;
  color: white;
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  flex: 1;
}

.contact-form .btn-primary {
  width: 100%;
}

.map-container {
  height: 100%;
}

.map {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.modal-content {
  background-color: #1a1a1a;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-body h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.modal-body p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.close-btn {
  margin: 0 auto;
}

.faq {
  padding: 5rem 0;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

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

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #222;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
  font-size: 1.2rem;
  color: var(--text-light);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px;
  max-height: 300px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* ===== Blog Post ===== */
.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-post-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.blog-post-meta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.blog-post-meta svg {
  margin-right: 8px;
}

.featured-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: auto;
}

.blog-post-content {
  margin-bottom: 3rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.blog-post-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--primary-color);
}

.blog-post-content h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: var(--text-light);
}

.blog-post-content ul, .blog-post-content ol {
  margin: 1.5rem 0 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.blog-post-content ul li, .blog-post-content ol li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.blog-post-footer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags a {
  background-color: #333;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  gap: 10px;
}

.post-share a {
  background-color: #333;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.post-share a:hover {
  background-color: var(--primary-color);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.post-navigation a {
  background-color: #222;
  color: var(--text-light);
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  max-width: 45%;
}

.post-navigation a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-navigation .prev-post svg {
  margin-right: 10px;
}

.post-navigation .next-post {
  text-align: right;
}

.post-navigation .next-post svg {
  margin-left: 10px;
}

.related-posts {
  margin-bottom: 3rem;
}

.related-posts h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-post {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.related-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post-info {
  padding: 15px;
}

.related-post-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.related-post-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
  }
  
  .navbar.active {
    left: 0;
  }
  
  .navbar li {
    margin: 10px 0;
  }
  
  .hamburger {
    display: flex;
    z-index: 1002;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title, .featured-services h2, .recent-projects h2, .latest-blog h2, .testimonials h2 {
    font-size: 2rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .service-detail {
    flex-direction: column;
  }
  
  .service-gallery {
    padding: 0;
    margin-top: 30px;
  }
  
  .service-detail.alt-background .service-content, .service-detail.alt-background .service-gallery {
    order: unset;
    padding: 0;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .featured-services h2, .recent-projects h2, .latest-blog h2, .testimonials h2 {
    font-size: 1.8rem;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .filter {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .service-card, .blog-card, .pricing-card, .team-member, .award {
    transform: none !important;
  }
}
