/* Global Styles */
:root {
  --primary-color: #c59d5f;
  --secondary-color: #2c3e50;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --border-radius: 4px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--dark-color);
  background-color: #fff;
  overflow-x: hidden;
}

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

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: #b38c4a;
  color: #fff;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn-secondary:hover {
  background-color: #1a2a39;
  color: #fff;
}

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

.btn-outlined:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 5rem;
  width: auto;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

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

/* Hero Section */
.hero {
  height: 80vh;
  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: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 6rem;
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: 5.6rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Our Story Section */
.our-story {
  padding: 6rem 0;
}

.our-story h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.story-text {
  flex: 1;
}

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

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.services h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

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

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

.service-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Featured Models Section */
.featured-models {
  padding: 6rem 0;
}

.featured-models h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.model-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.model-card:hover {
  transform: translateY(-5px);
}

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

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

.model-info {
  padding: 2rem;
  text-align: center;
}

.model-info h3 {
  margin-bottom: 0.5rem;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.testimonial {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.client-info {
  margin-top: 2rem;
}

.client-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.client-info p {
  margin-bottom: 0;
  color: var(--gray-color);
  font-style: italic;
}

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

.latest-blog h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
}

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

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

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.date {
  color: var(--gray-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.excerpt {
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: scaleX(0);
  transform-origin: right;
}

.read-more:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Interesting Facts Section */
.interesting-facts {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.interesting-facts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.fact-card {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.fact-card:hover {
  transform: translateY(-5px);
}

.fact-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.fact-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 2rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

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

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

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

.footer-contact address p svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 1rem;
}

.legal-links a {
  color: #ddd;
  transition: var(--transition);
}

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

.separator {
  margin: 0 1rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 2rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 120rem;
  width: 100%;
}

.cookie-content p {
  margin-bottom: 1.5rem;
}

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

.btn-accept-all,
.btn-customize,
.btn-decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
}

.btn-accept-all {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-accept-all:hover {
  background-color: #b38c4a;
}

.btn-customize {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

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

.btn-decline {
  background-color: transparent;
  color: #ccc;
}

.btn-decline:hover {
  color: #fff;
}

.cookie-more a {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.cookie-more a:hover {
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 8rem 0;
  text-align: center;
  margin-bottom: 6rem;
}

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

.page-header p {
  font-size: 2rem;
  max-width: 70rem;
  margin: 0 auto;
}

/* About Page Styles */
.about-story {
  padding: 6rem 0;
}

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

.about-content h2 {
  margin-bottom: 3rem;
}

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

.achievements {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.achievements h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.achievement-card {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.achievement-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.team {
  padding: 6rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
}

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

.team-card img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

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

.team-card p {
  margin-bottom: 1rem;
}

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

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--secondary-color);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.values {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.values h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.value-card {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.value-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.partners {
  padding: 6rem 0;
}

.partners h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  padding: 2rem;
  text-align: center;
}

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

/* Blog Page Styles */
.blog-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.blog-categories {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-tag {
  padding: 0.8rem 1.5rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 1.4rem;
}

.category-tag:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.newsletter {
  padding: 6rem 0;
  background-color: var(--secondary-color);
  color: #fff;
}

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

.newsletter h2 {
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

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

/* Blog Post Styles */
.blog-post {
  padding: 6rem 0;
}

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

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

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

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

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

.author-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}

.author-title {
  color: var(--gray-color);
  font-size: 1.4rem;
}

.post-featured-image {
  width: 100%;
  max-height: 50rem;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
}

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

.post-content {
  max-width: 80rem;
  margin: 0 auto;
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

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

.post-content ul,
.post-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 1rem;
}

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
  font-style: italic;
  margin: 3rem 0;
}

.post-quote {
  background-color: var(--light-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
  text-align: center;
}

.post-quote blockquote {
  border: none;
  padding: 0;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--secondary-color);
  margin: 0;
}

.post-image-with-caption {
  margin: 3rem 0;
}

.post-image-with-caption img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.image-caption {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gray-color);
  font-style: italic;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-label {
  font-weight: 500;
}

.tag {
  padding: 0.5rem 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.post-share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--secondary-color);
  transition: var(--transition);
}

.social-share a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.related-posts {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

.related-card:hover {
  transform: translateY(-5px);
}

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

.related-card h3 {
  padding: 1.5rem;
  margin-bottom: 0;
  font-size: 1.8rem;
}

.related-date {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-color);
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

.info-card {
  display: flex;
  margin-bottom: 3rem;
}

.info-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 2rem;
  flex-shrink: 0;
}

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

.info-content p {
  margin-bottom: 0.5rem;
}

.social-connect {
  margin-top: 4rem;
}

.contact-form-container {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.contact-form-container p {
  margin-bottom: 3rem;
  color: var(--gray-color);
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

input,
select,
textarea {
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1.6rem;
}

textarea {
  resize: vertical;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.form-checkbox input {
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
}

.form-checkbox label {
  margin-bottom: 0;
}

.map-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 40rem;
}

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

.faq-section {
  padding: 6rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.faq-item {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: #fff;
  padding: 4rem;
  border-radius: var(--border-radius);
  max-width: 50rem;
  width: 100%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.8rem;
  cursor: pointer;
  line-height: 1;
}

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

.thank-you-message svg {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.thank-you-message h2 {
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  margin-bottom: 3rem;
}

/* Models Page Styles */
.model-filters {
  padding: 3rem 0;
  background-color: var(--light-color);
  margin-bottom: 6rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  align-items: center;
}

.filter-group label {
  margin-right: 1rem;
  margin-bottom: 0;
}

.filter-group select {
  padding: 1rem 1.5rem;
  min-width: 15rem;
}

.search-box {
  display: flex;
  max-width: 40rem;
  margin-left: auto;
}

.search-box input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 1px solid var(--light-gray);
  border-right: none;
}

.search-btn {
  padding: 1rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background-color: #b38c4a;
}

.models-grid-section {
  padding-bottom: 6rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.models-grid .model-card {
  margin-bottom: 0;
}

.model-card .model-image {
  position: relative;
  overflow: hidden;
}

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

.model-card:hover .model-overlay {
  opacity: 1;
}

.view-profile {
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.view-profile:hover {
  background-color: #b38c4a;
  color: #fff;
}

.model-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--gray-color);
}

.model-categories {
  color: var(--primary-color);
  font-weight: 500;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

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

.pagination a.next {
  width: auto;
  padding: 0 1.5rem;
}

.pagination a.next svg {
  margin-left: 0.5rem;
}

.booking-cta {
  padding: 6rem 0;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
}

.booking-cta h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.booking-cta p {
  margin-bottom: 3rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.model-testimonials {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.model-testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .hero {
    height: 70vh;
  }
  
  .story-content {
    flex-direction: column-reverse;
  }
  
  .story-image {
    margin-bottom: 3rem;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 25rem;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    transform: translateX(0);
  }
  
  nav ul {
    flex-direction: column;
    padding: 8rem 2rem 2rem;
  }
  
  nav ul li {
    margin: 0 0 2rem 0;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-options {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .search-box {
    margin-left: 0;
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  .hero {
    height: 50vh;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .service-grid,
  .achievement-grid,
  .values-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-author {
    flex-direction: column;
  }
  
  .modal-content {
    padding: 3rem 2rem;
  }
}

.info-box {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.info-box h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-box ul {
  margin-bottom: 0;
}
