/* 
  Luminous Lens Photography - Main Stylesheet
  A modern, clean design for a professional photography website
*/

/* Base Styles & CSS Reset */
:root {
  --primary-color: #3a7bd5;
  --primary-dark: #2d62a3;
  --secondary-color: #00d2ff;
  --accent-color: #ff7e5f;
  --text-dark: #333333;
  --text-light: #777777;
  --bg-light: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-gray: #f8f8f8;
  --border-color: #eeeeee;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FFC107;
  --info-color: #2196F3;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --max-width: 1200px;
  --header-height: 80px;
  --footer-bg: #222222;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

button, .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

button:hover, .btn:hover {
  background-color: var(--primary-dark);
  color: white;
}

button:focus, .btn:focus {
  outline: none;
}

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

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

.btn.tertiary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-light);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

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

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

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  margin-top: var(--header-height);
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-secondary);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Title Section */
.page-title {
  background-color: var(--bg-gray);
  text-align: center;
  padding: 8rem 0 4rem;
  margin-bottom: 0;
}

.page-title h1 {
  margin-bottom: 0.5rem;
}

.page-title p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Welcome Languages Section */
.welcome-languages {
  text-align: center;
  background-color: var(--bg-light);
}

.languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.languages p {
  margin: 0.5rem 1rem;
  font-size: 1.1rem;
}

/* Future Quote Section */
.future-quote {
  background-color: var(--bg-gray);
  text-align: center;
}

.future-quote blockquote {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.25rem;
  font-style: italic;
  font-family: var(--font-secondary);
  color: var(--text-dark);
  position: relative;
  padding: 0 2rem;
}

.future-quote blockquote::before,
.future-quote blockquote::after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.future-quote blockquote::before {
  top: -1rem;
  left: 0;
}

.future-quote blockquote::after {
  bottom: -2rem;
  right: 0;
}

.future-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

/* Featured Posts */
.featured-posts {
  background-color: var(--bg-light);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 0.25rem;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 0.5rem;
}

/* Services Section */
.services {
  background-color: var(--bg-gray);
}

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

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.service-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-light);
  text-align: center;
}

.testimonial-slider {
  margin-top: 3rem;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  min-width: 100%;
  scroll-snap-align: start;
  padding: 0 1rem;
}

.testimonial-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content::before {
  content: """;
  font-family: var(--font-secondary);
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

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

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 4rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

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

.footer-contact p svg {
  margin-right: 0.75rem;
  min-width: 16px;
}

.footer-contact p a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

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

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

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-strong);
  z-index: 1000;
  display: none;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-content {
  padding: 1.5rem;
}

.cookie-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cookie-content p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  flex: 1;
  min-width: 120px;
}

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

/* Blog Page Styles */
.blog-content {
  background-color: var(--bg-light);
}

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

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--box-shadow-strong);
}

.blog-image {
  height: 100%;
  min-height: 300px;
}

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

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

.blog-text {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

.blog-meta .category {
  background-color: var(--bg-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.blog-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.blog-text h2 a {
  color: var(--text-dark);
  transition: var(--transition);
}

.blog-text h2 a:hover {
  color: var(--primary-color);
}

.blog-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

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

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

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--accent-color);
  padding: 0 1.5rem;
}

.newsletter-form button:hover {
  background-color: darken(var(--accent-color), 10%);
}

/* Single Post Styles */
.single-post {
  background-color: var(--bg-light);
  padding-top: 8rem;
}

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

.post-header h1 {
  font-size: 2.75rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

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

.post-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

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

.featured-image {
  width: 100%;
  height: 500px;
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.post-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.post-content p,
.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

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

.post-image {
  margin: 2.5rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-style: italic;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.tag {
  background-color: var(--bg-gray);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.prev-post a,
.next-post a {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  font-weight: 600;
}

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

.prev-post a::before {
  content: '←';
  margin-right: 0.5rem;
}

.next-post a::after {
  content: '→';
  margin-left: 0.5rem;
}

.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

/* Portfolio Page Styles */
.portfolio-filter {
  background-color: var(--bg-light);
  padding-bottom: 0;
  padding-top: 1rem;
}

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

.filter-btn {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.portfolio-gallery {
  background-color: var(--bg-light);
  padding-top: 0;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-info {
  text-align: center;
  color: white;
  padding: 1.5rem;
}

.gallery-info h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

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

/* Lightbox */
.lightbox-container {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
}

.lightbox-image {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.3s;
  user-select: none;
  transform: translateY(-50%);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Client Testimonials on Portfolio Page */
.client-testimonials {
  background-color: var(--bg-gray);
}

.testimonials-carousel {
  margin-top: 3rem;
}

/* CTA Section */
.cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

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

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

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta .btn {
  background-color: var(--accent-color);
}

.cta .btn:hover {
  background-color: darken(var(--accent-color), 10%);
}

/* About Us Page Styles */
.about-intro {
  background-color: var(--bg-light);
}

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

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-philosophy {
  background-color: var(--bg-gray);
  text-align: center;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-item {
  background-color: white;
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.philosophy-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.philosophy-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.philosophy-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.team-section {
  background-color: var(--bg-light);
  text-align: center;
}

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

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.25rem;
}

.team-member p {
  color: var(--text-light);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--bg-gray);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

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

.awards-recognition {
  background-color: var(--bg-gray);
  text-align: center;
}

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

.award-item {
  background-color: white;
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.award-icon {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.award-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.award-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.our-approach {
  background-color: var(--bg-light);
}

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

.approach-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.approach-text h2 {
  margin-bottom: 1.5rem;
}

.approach-text p,
.approach-text ol {
  color: var(--text-light);
  font-size: 1.05rem;
}

.approach-text ol {
  padding-left: 1.5rem;
}

.approach-text ol li {
  margin-bottom: 1rem;
}

.approach-text strong {
  color: var(--text-dark);
}

/* Contact Page Styles */
.contact-main {
  background-color: var(--bg-light);
}

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

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-icon {
  color: var(--primary-color);
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

.social-contact {
  margin-top: 3rem;
}

.social-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

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

.form-group.checkbox input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-group.checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.map-section {
  background-color: var(--bg-gray);
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-top: 2rem;
}

.map-container iframe {
  display: block;
}

.faq-section {
  background-color: var(--bg-light);
}

.faq-list {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  background-color: var(--bg-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

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

.faq-item.active .faq-question {
  background-color: var(--primary-color);
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-toggle {
  color: white;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

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

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

.close-modal {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  color: var(--text-light);
  font-size: 1.75rem;
  font-weight: bold;
  cursor: pointer;
}

.modal-body {
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.checkmark-circle {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.modal-body h2 {
  margin-bottom: 1rem;
}

.modal-body p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .post-grid,
  .services-grid,
  .philosophy-grid,
  .team-grid,
  .awards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .post-header h1 {
    font-size: 2.25rem;
  }
  
  .featured-image {
    height: 300px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .post-content h2 {
    font-size: 1.5rem;
  }
  
  .post-content h3 {
    font-size: 1.25rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
