body {
  height: 100%;
  scroll-behavior: smooth; /* Smooth scrolling down n up  */
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.65;
  font-size: 16px;
}
/* Image loading transition */
img {
  transition: opacity 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.site-header {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px); /* Glass effect */
  z-index: 100;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #2c5530;
}

.hero {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Hero decorative elements */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.03) 0%,
    rgba(127, 176, 105, 0.06) 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(44, 85, 48, 0.05), transparent);
  border-radius: 50%;
  z-index: 1;
}

/* Hero Layout Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Text Content */
.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-text h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c5530 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: #495057;
  margin: 0 0 40px;
  font-size: 22px;
  line-height: 1.6;
  max-width: 500px;
}

/* Hero Image */
.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img,
.hero-featured-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* Specific Hero Variants */
.services-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.trending-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    url("trend1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.services-hero::before,
.trending-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.services-hero .container,
.trending-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero h1,
.trending-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero p,
.trending-hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}
/* ===============================
   TYPOGRAPHY & SECTION HEADERS
   =============================== */
.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  position: relative;
}

/* Section title underline decoration */
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2c5530, #7fb069);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.intro-text-centered {
  text-align: center;
  font-size: 18px;
  color: #495057;
  max-width: 600px;
  margin: 0 auto 60px;
}

/*  CARDS & GRID  */
.card {
  background: #ffffff;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid #e9ecef;
  position: relative;
}

/* Card top border accent */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5530, #7fb069);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.card h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 24px 24px 12px;
  color: #1a1a1a;
}

.card p {
  color: #495057;
  margin: 0 24px 24px;
  line-height: 1.6;
}

/* Images in index */
.thumb,
.project-thumb {
  height: 240px;
  border-radius: 0;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}

/*  GRID SYSTEMS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* Projects Section */
.projects {
  margin: 120px 0;
  animation: fadeIn 1s ease-out;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #fafafa;
}

.service,
.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border-top: 4px solid #2c5530;
}

.service:hover,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c5530 0%, #7fb069 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.service-card h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card > p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: #1a1a1a;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5530;
  font-weight: bold;
  font-size: 1.1rem;
}

.service-price {
  background: #2c5530;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin: 25px 0;
  display: inline-block;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
/* About Section */
.about {
  margin: 120px 0;
  padding: 80px 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-inner p {
  flex: 1;
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 20px 30px;
  background: rgba(44, 85, 48, 0.02);
  border-radius: 12px;
  border-left: 4px solid #2c5530;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-inner ul {
  flex: 0 0 300px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-inner li {
  padding: 12px 0;
  color: #1a1a1a;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.about-inner li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5530;
  font-weight: bold;
}

/* REVIEWS SECTION */
.reviews {
  margin: 120px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.review-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.review-stars {
  color: #2c5530;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 24px;
  font-style: italic;
  position: relative;
}

.review-card blockquote:before {
  content: '"';
  font-size: 60px;
  color: #2c5530;
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
}

.review-author {
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.review-author strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-author span {
  color: #495057;
  font-size: 14px;
}

/*  GALLERY SECTIONS */
.gallery-showcase,
.gallery {
  margin: 120px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img,
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.gallery-overlay p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Trending Gallery Items */
.trending-item {
  position: relative;
}

.trending-item::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: #2c5530;
  border-radius: 50%;
  z-index: 3;
  animation: pulse 2s infinite;
}

.trending-item .gallery-overlay {
  background: linear-gradient(transparent, rgba(218, 165, 32, 0.9));
}

.trending-item:hover .gallery-overlay {
  background: linear-gradient(transparent, rgba(218, 165, 32, 0.95));
}

/* Consultants Page */
.consultants-section {
  margin: 120px 0;
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.consultant-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.consultant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.consultant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.consultant-info {
  padding: 32px;
}

.consultant-info h4 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.consultant-title {
  font-size: 16px;
  color: #2c5530;
  font-weight: 500;
  margin: 0 0 20px;
}

.consultant-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #495057;
  margin: 0 0 20px;
}

.consultant-specialties {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin: 0 0 24px;
  font-size: 14px;
}

.consultant-specialties strong {
  color: #1a1a1a;
  display: block;
  margin-bottom: 8px;
}

.consultant-specialties span {
  color: #495057;
  font-style: italic;
}

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

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.contact-btn.whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.contact-btn.linkedin {
  background: #0077b5;
  color: #ffffff;
}

.contact-btn.linkedin:hover {
  background: #005e93;
  transform: translateY(-2px);
}

.contact-btn.email {
  background: #2c5530;
  color: #ffffff;
}

.contact-btn.email:hover {
  background: #7fb069;
  transform: translateY(-2px);
}

.contact-btn.phone {
  background: #6c757d;
  color: #ffffff;
  grid-column: 1 / -1;
}

.contact-btn.phone:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Before & After Page */
.before-after-section {
  margin: 120px 0;
}

.transformations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.project-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 24px;
  text-align: center;
}

.comparison-container {
  margin-bottom: 32px;
}

.image-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.before-section,
.after-section {
  position: relative;
  overflow: hidden;
}

.before-section img,
.after-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.transformation-card:hover .before-section img,
.transformation-card:hover .after-section img {
  transform: scale(1.05);
}

.label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
}

.before-section .label {
  background: #e74c3c;
}

.after-section .label {
  background: #27ae60;
}

.transformation-details {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.transformation-details p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
}

.transformation-details p:last-child {
  margin-bottom: 0;
}

.transformation-details strong {
  color: #2c5530;
  font-weight: 600;
}

/* Terms of Service Page */
.terms-section {
  margin: 120px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0 60px;
  border-left: 4px solid #2c5530;
}

.terms-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.terms-intro p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

.terms-content {
  margin: 60px 0;
}

.terms-section-block {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.terms-section-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.terms-section-block h4 {
  color: #2c5530;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2c5530;
}

.terms-section-block p {
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.terms-footer {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  margin: 60px 0;
  text-align: center;
  border: 2px solid #2c5530;
}

.terms-footer p {
  color: #1a1a1a;
  font-size: 14px;
  margin: 0 0 12px;
}

.terms-footer p:last-child {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

.terms-footer strong {
  color: #2c5530;
}

/* TRENDING PAGE SPECIFIC STYLES */
.trending-intro {
  padding: 80px 0;
  background: #fafafa;
  text-align: center;
}

.trending-intro h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.trending-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #495057;
}

.trending-gallery {
  padding: 80px 0;
  background: white;
}

.trend-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trend-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.trend-item:hover .trend-image img {
  transform: scale(1.05);
}

.trend-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.trend-item:hover .trend-overlay {
  transform: translateY(0);
}

.trend-overlay h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.trend-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* FOOTER */
.site-footer,
footer {
  padding: 40px 0 20px;
  background: #1a1a1a;
  color: #ffffff;
  margin-top: 60px;
}

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

.footer-section h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #ffffff;
}

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

.footer-section li {
  margin-bottom: 6px;
}

.footer-section a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.social-links a:hover {
  color: #ffffff;
  border-bottom-color: #2c5530;
  transform: translateX(4px);
}

.contact-info p {
  color: #b3b3b3;
  font-size: 14px;
  margin: 4px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #b3b3b3;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* movement animation like effects */

/* Fade In Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Pulse Animation for Trending Items */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*   RESPONSIVE DESIGN - MOBILE */

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-text h2 {
    font-size: 52px;
  }
  .section-title {
    font-size: 42px;
  }
  .container {
    padding: 48px 20px;
  }
  .footer-content {
    gap: 25px;
  }
  .hero-grid {
    gap: 60px;
  }
}

/* Mobile Landscape */
@media (max-width: 900px) {
  .hero {
    padding: 80px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 44px;
  }
  .hero-text p {
    font-size: 20px;
  }
  .hero-image {
    max-width: 450px;
    margin: 0 auto;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-inner ul {
    flex: none;
  }
  .contact-form {
    padding: 32px;
  }
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .site-footer {
    padding: 30px 0 15px;
    margin-top: 50px;
  }
}

/* Mobile Portrait */
@media (max-width: 600px) {
  .hero {
    padding: 60px 0 80px;
  }
  .hero-text h2 {
    font-size: 36px;
    line-height: 1.2;
  }
  .hero-text p {
    font-size: 18px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding: 8px 0;
  }

  .nav a {
    margin-left: 16px;
    white-space: nowrap;
    font-size: 14px;
  }

  .nav a:first-child {
    margin-left: 0;
  }
  .container {
    padding: 32px 20px;
  }

  /* Section spacing adjustments */
  .about {
    margin: 80px 0;
    padding: 60px 0;
  }
  .contact {
    margin: 80px 0;
  }
  .reviews {
    margin: 80px 0;
  }
  .gallery-showcase {
    margin: 80px 0;
  }
  .consultants-section {
    margin: 80px 0;
  }
  .before-after-section {
    margin: 80px 0;
  }
  .terms-section {
    margin: 80px 0;
  }

  /* Page-specific mobile adjustments */
  .color-services-intro {
    padding: 24px;
    margin: 40px 0;
  }
  .color-process-section {
    padding: 32px 24px;
    margin: 40px 0;
  }
  .terms-intro {
    padding: 24px;
    margin: 30px 0 40px;
  }
  .terms-section-block {
    padding: 24px;
    margin-bottom: 16px;
  }
  .terms-footer {
    padding: 24px;
    margin: 40px 0;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    margin-bottom: 12px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .consultants-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .transformations-grid {
    gap: 40px;
  }
  .transformation-card {
    padding: 24px;
  }
  .image-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .before-section img,
  .after-section img {
    height: 250px;
  }
  .consultant-info {
    padding: 24px;
  }
  .review-card {
    padding: 24px;
  }
  .contact-form {
    padding: 24px;
    margin: 32px auto 0;
  }
  .form-row {
    flex-direction: column;
    gap: 16px;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
  .btn {
    padding: 16px 28px;
    font-size: 15px;
  }
  .site-footer {
    padding: 25px 0 12px;
    margin-top: 40px;
  }

  /* Hero sections mobile */
  .services-hero,
  .trending-hero {
    padding: 120px 0 80px;
  }

  .services-hero h1,
  .trending-hero h1 {
    font-size: 2.5rem;
  }

  .trending-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trend-image {
    height: 300px;
  }

  .section-header h2,
  .process-section h2 {
    font-size: 2rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
  .hero-text h2 {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
  .site-footer {
    padding: 20px 0 10px;
    margin-top: 30px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .btn {
    display: none;
  }

  .hero {
    padding: 20px 0;
  }
  .container {
    padding: 20px;
  }
}
