/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #333;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b8941f, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #333;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-logo h2 {
  color: #d4af37;
  font-size: 2rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  color: #333;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  z-index: 2;
  position: relative;
}

.service-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #d4af37;
}

.service-item i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
  display: block;
}

.service-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.hero-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #333;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.7;
}

.about-features {
  list-style: none;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #666;
}

.about-features i {
  color: #d4af37;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, #faf8f3, #fff);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-number {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-category {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.service-category:hover {
  transform: translateY(-5px);
}

.service-category.featured {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, #faf8f3, #fff);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #d4af37;
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: #333;
}

.service-category h3 {
  color: #333;
  margin-bottom: 1rem;
}

.service-category ul {
  list-style: none;
  text-align: left;
}

.service-category li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

.service-category li:last-child {
  border-bottom: none;
}

/* Services Showcase Section */
.services-showcase {
  padding: 80px 0;
  background: #fff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.showcase-item {
  background: linear-gradient(135deg, #faf8f3, #fff);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #d4af37;
}

.showcase-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-icon {
  transform: scale(1.1);
}

.showcase-icon i {
  font-size: 2rem;
  color: #333;
}

.showcase-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.showcase-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.client-info h4 {
  color: #333;
  margin-bottom: 0.25rem;
}

.client-info span {
  color: #d4af37;
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.pricing-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta {
  margin-bottom: 2rem;
}

.pricing-note {
  background: #faf8f3;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #d4af37;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-note p {
  color: #666;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: #d4af37;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: #d4af37;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #b8941f;
  transform: translateY(-3px);
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.form-group textarea {
  resize: vertical;
}

/* Map Section */
.map {
  height: 400px;
}

.map-container {
  height: 100%;
}

.map-container iframe {
  filter: grayscale(20%);
}

/* Footer */
.footer {
  background: #333;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

.footer-section .social-links a {
  background: #555;
  color: #fff;
}

.footer-section .social-links a:hover {
  background: #d4af37;
  color: #333;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 1.8rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(51, 51, 51, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 120px 0 50px;
  }

  .hero-wrapper {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    height: 350px;
    max-width: 400px;
  }

  .service-grid {
    gap: 1.5rem;
  }

  .service-item {
    padding: 1.5rem 1rem;
  }

  .service-item i {
    font-size: 2rem;
  }

  .service-item span {
    font-size: 0.9rem;
  }

  .hero-accent {
    width: 250px;
    height: 250px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .highlight-number {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    order: 2;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 55px;
    height: 55px;
  }

  .whatsapp-float i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-visual {
    height: 300px;
    max-width: 350px;
  }

  .service-grid {
    gap: 1rem;
  }

  .service-item {
    padding: 1.2rem 0.8rem;
  }

  .service-item i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .service-item span {
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-category {
    padding: 1.5rem;
  }

  .gallery-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .showcase-item {
    padding: 1.5rem 1rem;
  }

  .showcase-icon {
    width: 70px;
    height: 70px;
  }

  .showcase-icon i {
    font-size: 1.8rem;
  }

  .hero-decoration {
    height: 300px;
  }

  .decoration-circle {
    width: 70px;
    height: 70px;
  }

  .decoration-circle i {
    font-size: 1.5rem;
  }

  .about-highlights {
    padding: 1.5rem 1rem;
  }

  .highlight-number {
    font-size: 2rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-category:hover .service-icon {
  transform: scale(1.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8941f;
}

/* Thank You Page Styles */
.thank-you-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 5rem;
  color: #d4af37;
  animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.thank-you-content h1 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.thank-you-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.next-steps {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.next-steps h3 {
  color: #d4af37;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #faf8f3, #fff);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.contact-info-box {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-info-box h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: linear-gradient(135deg, #b8941f, #d4af37);
  transform: translateY(-2px);
}

.contact-option.whatsapp {
  background: #25d366;
  color: white;
}

.contact-option.whatsapp:hover {
  background: #128c7e;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-follow {
  margin-top: 2rem;
}

.social-follow p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.social-follow .social-links {
  justify-content: center;
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
  padding: 120px 0 80px;
  background: #fff;
  min-height: 100vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.policy-header h1 {
  color: #333;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  font-size: 1rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.policy-intro {
  background: linear-gradient(135deg, #faf8f3, #fff);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border-left: 4px solid #d4af37;
}

.policy-intro p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.policy-section h3 {
  color: #333;
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem 0;
}

.policy-section p {
  color: #666;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin: 1rem 0 1rem 2rem;
}

.policy-section li {
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details {
  background: #faf8f3;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: #666;
}

.contact-details p:first-child {
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.contact-details i {
  color: #d4af37;
  margin-right: 0.5rem;
  width: 20px;
}

.policy-footer {
  background: linear-gradient(135deg, #faf8f3, #fff);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.policy-footer p {
  color: #666;
  font-size: 1rem;
  margin: 0;
  text-align: center;
  font-style: italic;
}

.back-to-home {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .thank-you-content h1 {
    font-size: 2.5rem;
  }

  .thank-you-message {
    font-size: 1.1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .policy-header h1 {
    font-size: 2.5rem;
  }

  .policy-content {
    padding: 0 15px;
  }

  .policy-section ul {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .thank-you-content h1 {
    font-size: 2rem;
  }

  .thank-you-icon i {
    font-size: 4rem;
  }

  .next-steps,
  .contact-info-box {
    padding: 1.5rem;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-intro,
  .policy-footer {
    padding: 1.5rem;
  }
}
