/* Global Styles */
:root {
  --primary-color: #e3a04e;
  --secondary-color: #333333;
  --accent-color: #d14836;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #333333;
  --light-text: #ffffff;
  --border-color: #e1e1e1;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --font-primary: 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Georgia', serif;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

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

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

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

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

ul {
  list-style: none;
}

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

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.btn-primary:hover {
  background-color: #c9883a;
  border-color: #c9883a;
  color: var(--light-text);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--light-text);
}

.btn-secondary:hover {
  background-color: #222222;
  border-color: #222222;
  color: var(--light-text);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

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

.neon-button {
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 5px rgba(227, 160, 78, 0.7);
  box-shadow: 0 0 15px rgba(227, 160, 78, 0.7);
}

.neon-button::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--primary-color);
  border-radius: 0.25rem;
  animation: neonGlow 1.5s infinite alternate;
  pointer-events: none;
}

@keyframes neonGlow {
  from {
    opacity: 0.3;
    box-shadow: 0 0 5px rgba(227, 160, 78, 0.3);
  }
  to {
    opacity: 1;
    box-shadow: 0 0 20px rgba(227, 160, 78, 0.8), 0 0 40px rgba(227, 160, 78, 0.5);
  }
}

.spell-check-button {
  position: relative;
  margin-left: 10px;
}

.spell-check-button:hover {
  background-color: #444;
}

/* Navbar */
.navbar {
  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);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

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

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

.nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}

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

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  margin-top: 90px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  color: var(--light-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  letter-spacing: 2px;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  font-weight: 400;
}

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

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

/* Featured Models Section */
.featured-models {
  background-color: var(--light-color);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

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

.model-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.model-card h3 {
  font-size: 1.25rem;
  margin: 15px 0 5px;
  text-align: center;
}

.model-card p {
  color: #777;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

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

/* Services Section */
.services {
  background-color: #fff;
}

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

.service-card {
  background: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-10px);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--light-text);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card:hover .service-icon {
  color: var(--light-text);
}

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

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

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

.testimonial-slide {
  padding: 0 20px;
}

.testimonial-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-content:before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.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 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

/* Recent Posts Section */
.recent-posts {
  background-color: #fff;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.post-card {
  background: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.post-image {
  height: 240px;
  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: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.post-meta {
  display: flex;
  gap: 15px;
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.post-meta span {
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
}

.post-content p {
  margin-bottom: 15px;
  flex-grow: 1;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

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

/* Call to Action */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg') no-repeat center center/cover;
  color: var(--light-text);
  text-align: center;
}

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

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

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

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: #a7a7a7;
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition);
}

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

.footer-column h3 {
  color: var(--light-text);
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

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

.footer-links a {
  color: #a7a7a7;
  transition: var(--transition);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

.footer-bottom-links a {
  color: #a7a7a7;
  font-size: 0.9rem;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 15px 0;
  z-index: 999;
  display: none;
}

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

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

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

/* Page Header */
.page-header {
  position: relative;
  background: url('images/page-header-bg.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 90px;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
  position: relative;
  color: var(--light-text);
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header p {
  position: relative;
  color: var(--light-text);
  font-size: 1.2rem;
}

/* About Page */
.about-section {
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: center;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.mission-vision {
  background-color: var(--light-color);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-box, .vision-box {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.mission-box .icon, .vision-box .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.values-section {
  background-color: #fff;
}

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

.value-card {
  background: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  background: var(--primary-color);
  color: var(--light-text);
}

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

.value-card:hover .value-icon,
.value-card:hover h3 {
  color: var(--light-text);
}

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

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

.team-member {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.member-image {
  height: 250px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.25rem;
  margin: 15px 15px 5px;
  text-align: center;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.member-bio {
  padding: 0 15px 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

.achievements-section {
  background-color: #fff;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.achievement-box {
  background: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.achievement-box:hover {
  transform: translateY(-10px);
  background: var(--primary-color);
  color: var(--light-text);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.achievement-box:hover .achievement-number {
  color: var(--light-text);
}

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

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-logo {
  width: 150px;
  height: 100px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Models Page */
.model-filter {
  background-color: var(--light-color);
  padding: 2rem 0;
}

.filter-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.filter-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.filter-select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  min-width: 180px;
}

.models-showcase {
  background-color: #fff;
}

.model-profile-card {
  display: flex;
  background: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  flex-direction: column;
}

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

.model-profile-image {
  width: 300px;
  height: 400px;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.model-profile-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.model-profile-info h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.model-categories {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.model-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.model-stats span {
  display: flex;
  align-items: center;
  color: #777;
}

.model-stats i {
  margin-right: 7px;
  color: var(--primary-color);
}

.model-experience {
  margin-bottom: 30px;
}

.model-actions {
  margin-top: auto;
  display: flex;
  gap: 15px;
}

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

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-color);
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

.page-link.active,
.page-link:hover {
  background: var(--primary-color);
  color: var(--light-text);
}

.become-model {
  background-color: var(--light-color);
}

.become-model-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 50px;
  align-items: center;
}

.become-model-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.become-model-text h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
}

.become-model-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.requirement-list {
  margin-bottom: 30px;
}

.requirement-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.requirement-list i {
  color: var(--primary-color);
  margin-right: 10px;
}

.become-model-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
}

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

/* Services Page */
.services-overview {
  background-color: #fff;
}

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

.services-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

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

.services-intro p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.main-services {
  background-color: var(--light-color);
}

.service-detailed-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.service-image {
  width: 400px;
  flex-shrink: 0;
}

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

.service-detailed-content {
  padding: 30px;
  flex-grow: 1;
}

.service-detailed-content h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-detailed-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 30px;
}

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

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

.additional-services {
  background-color: #fff;
}

.specialized-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.specialized-service {
  background: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.specialized-service:hover {
  transform: translateY(-10px);
  background: var(--primary-color);
  color: var(--light-text);
}

.specialized-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.specialized-service:hover .specialized-icon,
.specialized-service:hover h3 {
  color: var(--light-text);
}

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

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

.process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.process-step:not(:last-child):before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -30px;
  width: 2px;
  background: var(--primary-color);
}

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

.step-content {
  padding-top: 10px;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pricing-section {
  background-color: #fff;
}

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

.pricing-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.pricing-factor {
  background: var(--light-color);
  padding: 25px;
  border-radius: 8px;
  transition: var(--transition);
}

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

.factor-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-factor h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pricing-note {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  font-style: italic;
}

.services-testimonials {
  background-color: var(--light-color);
}

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

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.testimonial-text {
  position: relative;
  margin-bottom: 20px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-text p {
  font-style: italic;
  position: relative;
  z-index: 1;
}

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

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

.testimonial-author h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.testimonial-author p {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Blog Page */
.blog-section {
  background-color: #fff;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-card {
  display: flex;
  background: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-image {
  width: 40%;
  overflow: hidden;
  flex-shrink: 0;
}

.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-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-content h2 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.blog-content h2 a {
  color: var(--secondary-color);
  transition: var(--transition);
}

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

.blog-content p {
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.blog-social {
  display: flex;
  gap: 10px;
}

.blog-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  color: var(--secondary-color);
  transition: var(--transition);
}

.blog-social a:hover {
  background: var(--primary-color);
  color: var(--light-text);
}

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

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: var(--light-text);
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0 25px;
  border: none;
  border-radius: 0 5px 5px 0;
  background: var(--secondary-color);
  color: var(--light-text);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #222222;
}

.newsletter-fine-print {
  font-size: 0.85rem;
  opacity: 0.8;
}

.newsletter-fine-print a {
  color: var(--light-text);
  text-decoration: underline;
}

/* Blog Post Page */
.blog-post-content {
  background-color: #fff;
  padding-top: 2rem;
}

.blog-post-header {
  margin-bottom: 30px;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  margin: 15px 0 30px;
}

.post-featured-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

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

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

.post-content p {
  margin-bottom: 20px;
}

.post-image-gallery {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}

.image-caption {
  background: var(--light-color);
  padding: 10px 15px;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  margin-top: 0;
}

.post-list {
  margin: 20px 0;
  padding-left: 20px;
}

.post-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  list-style-type: disc;
}

.post-quote {
  background: var(--light-color);
  padding: 30px;
  border-left: 5px solid var(--primary-color);
  margin: 30px 0;
  font-style: italic;
}

.post-quote p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.post-quote cite {
  font-weight: 600;
  font-style: normal;
}

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

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

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

.post-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--light-color);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

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

.post-share span {
  font-weight: 600;
}

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

.share-link:hover {
  background: var(--primary-color);
  color: var(--light-text);
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.post-nav-prev, .post-nav-next {
  background: var(--light-color);
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}

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

.post-nav-prev a, .post-nav-next a {
  display: block;
  color: var(--secondary-color);
}

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

.post-nav-prev span, .post-nav-next span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.related-posts h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

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

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

.related-post-card {
  background: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

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

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

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

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

.related-post-card h4 {
  font-size: 1.1rem;
  margin: 15px;
}

.related-post-card h4 a {
  color: var(--secondary-color);
  transition: var(--transition);
}

.related-post-card h4 a:hover {
  color: var(--primary-color);
}

.related-post-meta {
  padding: 0 15px 15px;
  color: #777;
  font-size: 0.85rem;
}

/* Contact Page */
.contact-section {
  background-color: #fff;
}

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

.contact-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
}

.contact-form-container, .contact-info-container {
  background: var(--light-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h3, .contact-info-container h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

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

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

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

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

.form-actions {
  grid-column: span 2;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 5px;
}

.contact-details a {
  color: var(--text-color);
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-color);
}

.social-contact {
  margin-top: 30px;
}

.social-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-5px);
}

.map-section {
  height: 450px;
}

.map-container {
  height: 100%;
}

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

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

.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

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

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: var(--light-text);
}

/* Thank You Modal */
.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.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

.thank-you-content {
  padding: 50px 30px;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
}

.thank-you-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.thank-you-content p {
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-header {
  height: 250px;
}

.legal-content {
  background-color: #fff;
  padding: 3rem 0;
}

.legal-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.policy-section h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--secondary-color);
}

.policy-section ul, .policy-section ol {
  margin: 20px 0;
  padding-left: 20px;
}

.policy-section ul li, .policy-section ol li {
  margin-bottom: 10px;
}

.policy-section ul li {
  list-style-type: disc;
}

.policy-section ol li {
  list-style-type: decimal;
}

.refund-steps {
  background: var(--light-color);
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.refund-steps h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.contact-details {
  background: var(--light-color);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.legal-acknowledgment {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 20px;
  background: var(--light-color);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.75rem;
  }

  .service-image {
    width: 300px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .models-grid, .services-grid, .team-grid, .values-grid, .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .service-detailed-card, .blog-card {
    flex-direction: column;
  }

  .service-image, .blog-image {
    width: 100%;
    height: 300px;
  }

  .specialized-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-factors {
    grid-template-columns: 1fr;
  }

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

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

  .about-content, .mission-vision-grid, .become-model-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 0;
    transition: 0.5s;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .models-grid, .services-grid, .posts-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .model-profile-card {
    flex-direction: column;
  }

  .model-profile-image {
    width: 100%;
    height: 350px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    text-align: left;
  }

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

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

  .form-actions {
    grid-column: span 1;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .about-section .section-title, .hero-content h1, .page-header h1 {
    font-size: 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .post-footer {
    flex-direction: column;
    gap: 20px;
  }

  .blog-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
