/* ====== BASE RESET & GLOBAL STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== HEADER STYLES ====== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #E6DCD3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container1 {
  max-width: 1500px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex: 1;
}

.logo img {
  height: 70px;
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ====== NAVIGATION ====== */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #333;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ====== MOBILE MENU ====== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #E6DCD3;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px 0;
    text-align: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    flex-direction: row;
  }
}


/* ====== HERO SECTION ====== */
#hero {
  text-align: center;
  padding: 120px 20px 80px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  animation: fadeInUp 1s ease forwards;
}

#hero h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #222;
  animation: fadeSlideDown 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

#hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: #555;
  animation: fadeSlideDown 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

/* ====== BUTTON STYLES ====== */



/* ====== ANIMATION KEYFRAMES ====== */
@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ====== MOBILE STYLES ====== */
@media (max-width: 768px) {
  #hero {
    padding: 90px 20px 60px;
  }

  #hero h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
  }

  #hero p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    padding: 0 10px;
  }

 
}




 .hero-btn {
    /* Base Styling */
    display: inline-block;
    background: linear-gradient(135deg, #B2AC88 0%, #8A8462 100%);
    color: #fff !important;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(178, 172, 136, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    /* Premium Details */
    text-transform: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.25), 
              transparent);
    transition: all 0.7s ease;
  }

  .hero-btn:hover {
    /* Hover Effects */
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(178, 172, 136, 0.35);
    background: linear-gradient(135deg, #B2AC88 0%, #7A7455 100%);
  }

  .hero-btn:hover::after {
    left: 100%;
  }

  .hero-btn:active {
    /* Click Effect */
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(178, 172, 136, 0.3);
  }

  .hero-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .hero-btn:hover span {
    transform: translateX(3px);
  }



 /* ====== MEDIA SHOWCASE SECTION ====== */

/* ====== MEDIA SHOWCASE SECTION ====== */
/* ====== MEDIA SHOWCASE SECTION ====== */

body.loaded .media-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.media-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  transition: all 0.4s ease;
  position: relative;
}

.media-item.left,
.media-item.right {
  align-self: flex-start;
}

.media-item.center {
  align-self: flex-end;
}

.video-main {
  width: 750px;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeSlideRight 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 1.2s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-main:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.img-beef,
.img-about1 {
  width: 250px;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.img-beef {
  animation: fadeSlideLeft 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 1s;
}

.img-about1 {
  animation: fadeSlideUp 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 1.4s;
}

.img-beef:hover,
.img-about1:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ====== KEYFRAMES ====== */
@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 768px) {
  .media-showcase {
    flex-direction: column;
    align-items: center;
  }

  .media-item {
    width: 100%;
    max-width: 100%;
  }

  .video-main,
  .img-beef,
  .img-about1 {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .video-main {
    max-height: 250px;
  }

  .img-beef,
  .img-about1 {
    max-height: 250px;
  }
}



/* ====== TRUSTED SECTION ====== */
.trusted-section {
  width: 90%;
  max-width: 1400px;
  margin: 80px auto;
  padding: 60px 40px;
  background-color: #E6DCD3;
  border-radius: 16px;
  text-align: center;
}

.text {
  font-size: 2rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.4;
}

.text span {
  color: #222;
  font-weight: 600;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; /* Reduced gap */
  padding: 20px 0;
}

.logo-container {
  width: 70px; /* Smaller circle */
  height: 70px;
  border-radius: 50%;
  padding: 8px; /* Thinner padding */
  background: #B2AC88; /* Your requested color */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother transition */
  overflow: hidden;
  position: relative;
}

.logo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.5s ease;
}

.logo-container:hover {
  transform: scale(1.5); /* Subtler hover effect */
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.logo-container:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 40px 20px;
    margin: 40px auto;
  }
  
  .text {
    font-size: 1.5rem;
  }
  
  .logo-row {
    gap: 30px;
  }
  
  .logo-container {
    width: 60px;
    height: 60px;
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .logo-row {
    gap: 20px;
  }
  
  .logo-container {
    width: 50px;
    height: 50px;
  }
}

/* ====== ABOUT SECTION ====== */
.about-section {
  background-color: white;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-wrapper {
  display: flex;
  min-height: 600px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.about-left {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(178, 172, 136, 0);
  display: flex;
  align-items: flex-end;
  transition: all 0.5s ease;
  padding: 40px;
}

.overlay-content {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

.overlay-content h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.about-left:hover .about-image {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.about-left:hover .image-overlay {
  background: rgba(178, 172, 136, 0.7);
}

.about-left:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.about-right {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px;
  background: white;
}

.about-content {
  width: 100%;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  margin-bottom: 40px;
  color: #222;
  position: relative;
  display: inline-block;
}

.about-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #B2AC88;
}

.about-text-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bold {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  min-width: 250px;
  line-height: 1.6;
}

.normal {
  flex: 1;
  font-size: 16px;
  color: #555;
  min-width: 250px;
  line-height: 1.8;
}

.normal p:not(:last-child) {
  margin-bottom: 20px;
}

.about-cta {
  display: inline-block;
  padding: 12px 30px;
  background: #B2AC88;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid #B2AC88;
}

.about-cta:hover {
  background: white;
  color: #B2AC88;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ====== MOBILE STYLES ====== */
@media (max-width: 1024px) {
  .about-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  
  .about-left {
    height: 400px;
  }
  
  .about-right {
    padding: 60px 40px;
  }
  
  .about-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 20px;
  }
  
  .about-wrapper {
    border-radius: 12px;
  }
  
  .about-left {
    height: 300px;
  }
  
  .about-right {
    padding: 40px 25px;
  }
  
  .about-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .about-title:after {
    width: 40px;
    height: 3px;
    bottom: -10px;
  }
  
  .bold, .normal {
    min-width: 100%;
  }
  
  .about-text-grid {
    gap: 20px;
  }
  
  .image-overlay {
    padding: 25px;
  }
  
  .overlay-content h3 {
    font-size: 22px;
  }
  
  .about-cta {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-left {
    height: 250px;
  }
  
  .about-title {
    font-size: 32px;
  }
  
  .bold {
    font-size: 18px;
  }
  
  .normal {
    font-size: 15px;
  }
}





/* ====== ENHANCED CARD DESIGN ====== */
.services-section {
  padding: 80px 40px;
  text-align: center;
  background-color: white;
}

.services-title {
  font-size: 64px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: -1px;
}

.services-title:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #B2AC88;
  transition: width 0.4s ease;
}

.services-title:hover:after {
  width: 120px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  width: 100%;
  height: 380px; /* Slightly taller */
  background: #E6DCD3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(178,172,136,0.1) 0%, rgba(178,172,136,0) 100%);
  z-index: 1;
  transition: all 0.6s ease;
}

.card:hover {
  background: #B2AC88;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card .content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.card .content .icon {
  font-size: 2.2rem;
  color: #333;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 25px;
}

.card:hover .content .icon {
  color: white;
  background: #333;
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
}

.card .content .text h3 {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.card .content .text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

/* Refined Read More Link */
.card .content .text a {
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.card .content .text a:hover {
  border-bottom: 1px solid currentColor;
}

.card .content .text a::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.card .content .text a:hover::after {
  transform: translateX(3px);
}

/* Hover States */
.card:hover .content .text h3,
.card:hover .content .text p {
  color: white;
}

.card:hover .content .text a {
  color: white;
  border-bottom-color: rgba(255,255,255,0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }
  
  .services-title {
    font-size: 2.3rem;
    margin-bottom: 50px;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .card {
    height: 340px;
  }
  
  .card .content {
    padding: 30px 20px;
  }
  
  .card .content .icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .card .content .text h3 {
    font-size: 1.3rem;
  }
  
  .card .content .text p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}


/* ====== SERVICES SECTION ====== */
.services-section {
  padding: 100px 40px;
  text-align: center;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.services-title {
  font-size: 64px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin-bottom: 70px;
  position: relative;
  letter-spacing: -1.5px;
  font-weight: 600;
}

.services-title:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #B2AC88;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.services-title:hover:after {
  width: 120px;
  background: #9a9370;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  perspective: 1500px;
}

/* ====== CARD STYLES ====== */
.card {
  position: relative;
  width: 100%;
  height: 400px;
  background: #E6DCD3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform-style: preserve-3d;
  will-change: transform;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
  z-index: 1;
  transition: all 0.6s ease;
}

.card:hover {
  background: #B2AC88;
  transform: translateY(-10px) rotateX(2deg) rotateY(1deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ====== 3D ICON EFFECTS ====== */
.card .content .icon {
  font-size: 2.4rem;
  color: #333;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 20px;
  box-shadow: 
    0 5px 15px rgba(0,0,0,0.1),
    0 10px 25px rgba(0,0,0,0.08),
    inset 0 2px 0 rgba(255,255,255,0.8);
  transition: 
    all 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s ease,
    box-shadow 0.6s ease;
  margin-bottom: 30px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.card .content .icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  border-radius: 20px;
  z-index: -1;
  transition: all 0.6s ease;
  transform: translateZ(0);
}

.card:hover .content .icon {
  color: white;
  background: #333;
  transform: 
    rotateY(20deg) 
    rotateX(10deg) 
    translateY(-12px) 
    scale(1.15);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.2),
    0 20px 40px rgba(0,0,0,0.18),
    inset 0 -3px 8px rgba(0,0,0,0.25);
}

.card:hover .content .icon::before {
  transform: translateZ(15px);
  opacity: 0.7;
}

/* Unique 3D angles for each card */
.card:nth-child(1):hover .content .icon { /* Web Design */
  transform: 
    rotateY(25deg) 
    rotateX(8deg) 
    translateY(-12px) 
    scale(1.15);
}

.card:nth-child(2):hover .content .icon { /* Logo Design */
  transform: 
    rotateY(-18deg) 
    rotateX(10deg) 
    translateY(-12px) 
    scale(1.15);
}

.card:nth-child(3):hover .content .icon { /* Business Cards */
  transform: 
    rotateY(15deg) 
    rotateX(-8deg) 
    translateY(-12px) 
    scale(1.15);
}

.card:nth-child(4):hover .content .icon { /* Menus */
  transform: 
    rotateY(-22deg) 
    rotateX(5deg) 
    translateY(-12px) 
    scale(1.15);
}

.card:nth-child(5):hover .content .icon { /* Social Media */
  transform: 
    rotateY(18deg) 
    rotateX(-5deg) 
    translateY(-12px) 
    scale(1.15);
}

.card:nth-child(6):hover .content .icon { /* Branding */
  transform: 
    rotateY(-15deg) 
    rotateX(12deg) 
    translateY(-12px) 
    scale(1.15);
}

/* ====== CONTENT STYLES ====== */
.card .content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.card .content .text h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.card .content .text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

/* ====== READ MORE BUTTON ====== */
.read-more {
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding-bottom: 3px;
}

.read-more span {
  margin-left: 8px;
  transition: transform 0.4s ease;
}

.read-more:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.8);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.read-more:hover {
  color: #222;
}

.read-more:hover span {
  transform: translateX(5px);
}

.read-more:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ====== HOVER STATES ====== */
.card:hover .content .text h3,
.card:hover .content .text p {
  color: white;
}

.card:hover .read-more {
  color: white;
}

.card:hover .read-more:after {
  background: rgba(255,255,255,0.7);
}

/* ====== MOBILE RESPONSIVENESS ====== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .card {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px;
  }
  
  .services-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 25px;
  }
  
  .card {
    height: 350px;
  }
  
  .card .content {
    padding: 40px 25px;
  }
  
  .card .content .icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .card:hover .content .icon {
    transform: 
      rotateY(15deg) 
      rotateX(8deg) 
      translateY(-8px) 
      scale(1.1);
  }
  
  .card .content .text h3 {
    font-size: 1.4rem;
  }
  
  .card .content .text p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 2.2rem;
  }
  
  .card {
    height: 320px;
  }
  
  .card .content .icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}





/* ====== CONTACT SECTION ====== */
.contact-section {
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  background-color: white; /* Added white background */
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-left {
  flex: 1 1 48%;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: #333; /* Changed to dark gray */
}

.contact-left p {
  font-size: 1rem;
  color: #666; /* Changed from #bbb to darker gray */
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid  #333; /* Changed from #444 to lighter gray */
  color: #333; /* Changed from white to dark gray */
  font-size: 1rem;
  margin-bottom: 25px;
  padding: 10px 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid #333; /* Changed from white to dark gray */
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.luxury-btn {
    /* Base styling */
    background: linear-gradient(135deg, #B2AC88 0%, #9A9472 100%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(178, 172, 136, 0.2);
    
    /* Luxury details */
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  
  .luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.2), 
              transparent);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .luxury-btn:hover {
    /* Hover effects */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(178, 172, 136, 0.4);
    background: linear-gradient(135deg, #B2AC88 0%, #8A8462 100%);
  }
  
  .luxury-btn:hover::before {
    left: 100%;
  }
  
  .luxury-btn:active {
    /* Click effect */
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(178, 172, 136, 0.3);
  }
  
  .luxury-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(178, 172, 136, 0.3);
  }

.contact-right {
  flex: 1 1 40%;
  min-width: 300px;
  padding-left: 40px;
  margin-top: 60px;
}

.contact-right .info-block {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid #999; /* Changed from #444 to lighter gray */
}

.contact-right h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #333; /* Changed from #eee to dark gray */
}

.contact-right p {
  color: #666; /* Changed from #aaa to darker gray */
  font-size: 0.95rem;
  line-height: 1.6;
}


.contact-right {
  padding-left: 40px;
}

.info-block {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 2px solid #B2AC88;
}

.info-block h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-block p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 20px;
  padding-left: 20px;
  margin-top: 30px;
}

.social-icons a {
  color: #333;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(178, 172, 136, 0.1);
}

.social-icons a:hover {
  background: #B2AC88;
  color: white;
  transform: translateY(-3px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-right {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .info-block {
    padding-left: 15px;
  }
  
  .social-icons {
    padding-left: 15px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}
.clickable-contact {
  color: inherit; /* Keeps the original text color */
  text-decoration: none; /* Removes underline */
  cursor: pointer; /* Shows pointer cursor on hover */
}

.clickable-contact:hover {
  text-decoration: underline; /* Optional: adds underline on hover */
}
.form-message {
    margin: 15px 0;
    font-size: 14px;
    min-height: 20px;
}