:root {
  --black: #000000;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray-medium: #333333;
  --gray-light: #f5f5f5;
  --accent: #d4af37; /* Gold accent for luxury touch */
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--gray-medium);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Unique Header & Navigation */
.top-header {
  /* background-color: var(--black); */
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  color: var(--white);
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 2px;
  font-weight: 300;
}

.logo span {
  color: var(--accent);
  font-weight: 700;
}

.main-nav {
  display: flex;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 2rem;
  position: relative;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--accent);
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-top: 2px solid var(--accent);
}

.dropdown-content a {
  color: var(--black);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
  /* background-color: var(--gray-light); */
  background-color: var(--accent);
  color: var(--black);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover > a {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}
/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/hero-bg.jpg");
}

/* Page Header */
.page-header {
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content {
  max-width: 800px;
  margin-top: 60px;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.price-tag {
  background: var(--accent);
  color: var(--black);
  padding: 1.5rem 2.5rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 2rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
}

.breadcrumb li {
  margin: 0 0.5rem;
}

.breadcrumb li:after {
  content: "/";
  margin-left: 1rem;
  color: var(--accent);
}

.breadcrumb li:last-child:after {
  content: "";
  margin-left: 0;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--white);
}

/* Page Content */
.page-content {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--accent);
}

   /* Grid Layout Sections */
  .grid-section {
      padding: 5rem 0;
  }
  
  .section-title {
      text-align: center;
      margin-bottom: 4rem;
  }
  
  .section-title h2 {
      font-size: 2.8rem;
      position: relative;
      display: inline-block;
      padding-bottom: 1.5rem;
  }
  
  .section-title h2:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 2px;
      background: var(--accent);
  }
  
  /* Featured Cats Grid */
  .cats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      margin-bottom: 3rem;
  }
  
  .cat-card {
      background: var(--white);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
  }
  
  .cat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .cat-image {
      height: 300px;
      overflow: hidden;
  }
  
  .cat-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
  }
  
  .cat-card:hover .cat-image img {
      transform: scale(1.1);
  }
  
  .cat-info {
      padding: 2rem;
      text-align: center;
  }
  
  .cat-info h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }
  
  .cat-info p {
      color: var(--gray-medium);
      margin-bottom: 1rem;
  }
  
  /* Info Grid */
  .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
      margin: 4rem 0;
  }
  
  .info-card {
      text-align: center;
      padding: 2rem;
  }
  
  .info-card i {
      font-size: 3rem;
      color: var(--accent);
      margin-bottom: 1.5rem;
  }
  
  .info-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }
  
  /* Testimonials Grid */
  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      margin: 4rem 0;
  }
  
  .testimonial-card {
      background: var(--gray-light);
      padding: 2.5rem;
      position: relative;
  }
  
  .testimonial-card:before {
      content: """;
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: var(--accent);
      opacity: 0.2;
      font-family: Georgia, serif;
  }
  
  .testimonial-text {
      font-style: italic;
      margin-bottom: 1.5rem;
      line-height: 1.8;
      position: relative;
      z-index: 1;
  }
  
  .testimonial-author {
      display: flex;
      align-items: center;
  }
  
  .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 1.5rem;
      border: 2px solid var(--accent);
  }
  
  .author-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .author-info h4 {
      margin-bottom: 0.2rem;
      font-size: 1.1rem;
  }
  
  .author-info p {
      color: var(--accent);
      font-size: 0.9rem;
  }


/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--accent);
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.footer-col p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .logo h1 {
  font-size: 1.5rem;
}
  .main-nav ul {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    /* height: 100vh; */
    gap: 25px;
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    animation: navDropDown 0.5s ease forwards;
  }
  .main-nav ul.active {
    display: flex;
  }
  @keyframes navDropDown {
    0% {
      transform: translateY(-200px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .main-nav li {
    margin-bottom: 2rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h2 {
    font-size: 2.8rem;
  }

  .timeline:before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-content:after {
    left: -10px;
    right: auto;
    border-left: none;
    border-right: 10px solid var(--white);
  }

  .contact-container,
  .visit-container,
  .about-content,
  .form-container,
  .history-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons,
  .download-options,
  .modal-kitten {
    flex-direction: column;
    text-align: center;
  }

  .modal-kitten-image {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
    .logo h1 {
  font-size: 1.3rem;
}
  .page-header h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
  .care-tabs,
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .process-step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .articles-grid,
  .policy-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .care-tab {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .kitten-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .kitten-actions .btn {
    width: 100%;
  }

  .featured-image {
    height: 300px;
  }

  .featured-content h2 {
    font-size: 1.8rem;
  }

  .guarantee-card {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}