/* Base styles and variables */
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #d4af37; /* Golden accent */
  --light-bg: #f5f7fa;
  --dark-bg: #2c3e50;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --border-color: #e1e5ea;
  --font-primary: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-speed: 0.3s;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.2rem;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.logo-container h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--secondary-color);
}

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

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links li a {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-links li a.active::after,
.nav-links li a:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(1);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(212, 175, 55, 0.05); /* Very light golden tint */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.hero h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-text {
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background-color: #2980b9;
  color: white;
}

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

.btn-secondary:hover {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
}

/* Feature Cards */
.features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

/* Latest Posts */
.latest-posts {
  padding: 80px 0;
  background-color: white;
}

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

.post-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

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

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.posts-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  flex: 0 0 calc(50% - 15px);
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.testimonial-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.newsletter p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  outline: none;
}

.newsletter-form .btn-primary {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  font-weight: 600;
}

.newsletter-form .btn-primary:hover {
  background-color: #c19e2f;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 0 20px;
}

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

.footer-about {
  max-width: 400px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-contact address {
  font-style: normal;
}

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

.footer-contact svg {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin-bottom: 0;
}

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

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none; /* Will be shown via JS */
}

.cookie-content {
  padding: 25px;
}

.cookie-content h3 {
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-cookie-accept,
.btn-cookie-customize,
.btn-cookie-decline {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-cookie-accept {
  background-color: var(--primary-color);
  color: white;
}

.btn-cookie-customize {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-cookie-decline {
  background-color: #f1f1f1;
  color: var(--text-color);
}

.btn-cookie-accept:hover {
  background-color: #2980b9;
}

.btn-cookie-customize:hover {
  background-color: #f8f8f8;
}

.btn-cookie-decline:hover {
  background-color: #e5e5e5;
}

.cookie-policy {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Blog Page */
.page-banner {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.page-banner h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.blog-categories {
  margin-bottom: 30px;
}

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

.category-button {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background-color: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.blog-category {
  color: var(--primary-color);
  font-weight: 500;
}

.blog-date {
  color: var(--text-light);
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.blog-content h3 a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  transition: padding 0.3s ease;
}

.read-more:hover {
  padding-left: 5px;
}

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

.read-more:hover::after {
  margin-left: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 5px;
}

.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.pagination-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-arrow:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services Page */
.services-intro {
  margin-bottom: 60px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.intro-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.intro-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.service-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--border-color);
  transition: background-color 0.3s ease;
}

.service-card.featured::after {
  background-color: var(--accent-color);
}

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

.service-card:hover::after {
  background-color: var(--primary-color);
}

.service-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
}

.service-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.service-features {
  list-style-type: none;
  margin-bottom: 20px;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.process {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  z-index: 1;
  border: 5px solid white;
}

.process-content h3 {
  margin-bottom: 10px;
}

.process-step:last-child {
  margin-bottom: 0;
}

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

.cta-section {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq {
  padding: 80px 0;
  background-color: white;
}

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

.faq-item {
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  padding-left: 30px;
}

.faq-item h3::before {
  content: 'Q:';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* About Us Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.values {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
  margin-bottom: 20px;
  color: var(--accent-color);
  display: flex;
  justify-content: center;
}

.team {
  padding: 80px 0;
  background-color: white;
}

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

.team-card {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.team-card h3 {
  margin: 20px 0 5px;
}

.team-card p {
  padding: 0 20px;
  margin-bottom: 15px;
}

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

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--accent-color);
  color: white;
}

.office {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.office-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
}

.gallery-item.large {
  grid-column: span 2;
  height: 400px;
}

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

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

.office-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.partners {
  padding: 80px 0;
  background-color: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo img {
  max-width: 120px;
  max-height: 80px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background-color: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

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

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
}

.info-text {
  flex: 1;
}

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

.info-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

.social-links-contact h4 {
  margin-bottom: 15px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

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

.contact-form-container {
  background-color: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-form-container h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input, 
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  background-color: white;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}

.map-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-faq {
  background-color: white;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  margin-bottom: 20px;
}

.thank-you-message h2 {
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 25px;
}

/* Blog Post */
.blog-post {
  padding-top: 40px;
  padding-bottom: 80px;
}

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.post-category, .post-date, .post-author {
  font-size: 0.9rem;
}

.post-category {
  color: var(--primary-color);
  font-weight: 500;
}

.post-date, .post-author {
  color: var(--text-light);
}

.post-excerpt {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  align-items: center;
}

.post-tags span {
  font-weight: 500;
}

.post-tags a {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

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

.post-share {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
}

.post-share h3 {
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.share-buttons a:hover {
  background-color: var(--accent-color);
  color: white;
}

.related-posts {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.related-posts h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.related-post-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.related-post-card h4 {
  padding: 15px;
  font-size: 1rem;
  margin-bottom: 0;
}

.post-navigation {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-blog {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: var(--secondary-color);
}

.back-to-blog:hover {
  color: var(--primary-color);
}

.post-nav-buttons {
  display: flex;
  gap: 20px;
}

.prev-post, .next-post {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: var(--secondary-color);
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .intro-content, .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .intro-text h2::after, .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-container h1 {
    font-size: 1.2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .burger {
    display: block;
  }
  
  .features-grid, .posts-grid, .services-grid, .testimonial-grid, .faq-grid, .team-grid, .values-grid, .partners-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.featured {
    transform: scale(1);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .legal-links {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .page-banner h2 {
    font-size: 2rem;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: none;
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .office-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: auto;
    height: 250px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .post-nav-buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-content, .feature-card, .post-card, .service-card, .testimonial-card {
  animation: slideInUp 0.6s ease forwards;
}

.cookie-banner {
  animation: fadeIn 0.5s ease;
}
