@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --c-gold: #C6A87C;
  --c-gold-hover: #b0946b;
  --c-dark: #1E1F22;
  --c-text: #666666;
  --c-light: #F9F9F9;
  --c-white: #FFFFFF;
  
  --f-serif: 'Playfair Display', serif;
  --f-sans: 'Montserrat', sans-serif;
  
  --sidebar-width: 60px;
}

body {
  font-family: var(--f-sans);
  color: var(--c-text);
  background-color: var(--c-white);
  padding-left: var(--sidebar-width);
  overflow-x: hidden;
  line-height: 1.9;
  font-weight: 400;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  color: var(--c-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--c-gold);
}

.text-gold {
  color: var(--c-gold) !important;
}

.bg-dark-section {
  background-color: var(--c-dark);
  color: #fff;
}
.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3 {
  color: #fff;
}

/* Vertical Sidebar */
.vertical-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--c-white);
  border-right: 1px solid rgba(0,0,0,0.05);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vertical-content {
  transform: rotate(-90deg);
  white-space: nowrap;
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 13px;
  color: #888;
  letter-spacing: 1.5px;
}

.vertical-content a, .vertical-content span {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.vertical-content a:hover {
  color: var(--c-gold);
}
.vertical-content i {
  color: var(--c-gold);
  transform: rotate(90deg);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 50px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
  padding: 12px 50px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.navbar-brand {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: var(--c-dark);
  font-weight: 400;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  margin: 0 18px;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-gold);
}

/* Premium Magnetic Button */
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, #b8996b 100%);
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(198, 168, 124, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before {
  left: 100%;
}
.btn-gold:hover {
  background: var(--c-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Hero Section (Parallax & Premium) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 12%;
  max-width: 900px;
  margin-top: 120px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero h1 .text-gold {
  font-style: italic;
  font-weight: 400;
  display: block;
}
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 45px;
  max-width: 550px;
  letter-spacing: 0.5px;
}

/* Hero Carousel */
.hero-carousel {
  margin-bottom: 50px;
}
.hero-item {
  height: 100vh;
  min-height: 800px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.hero-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 100%);
}
.hero-carousel .hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 30px; /* slight offset for the header */
  padding-left: 12%;
  max-width: 900px;
  z-index: 2;
}
.hero-carousel h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-carousel h1 .text-gold {
  font-style: italic;
  font-weight: 400;
  display: block;
}
.hero-carousel p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 45px;
  max-width: 550px;
  letter-spacing: 0.5px;
}

/* 50/50 Split Section */
.split-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 700px;
  margin-bottom: 5px;
}
.split-section:last-of-type {
  margin-bottom: 0;
}
.split-image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax */
  min-height: 500px;
  position: relative;
}
.split-content {
  flex: 0 0 50%;
  padding: 120px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-subtitle {
  color: var(--c-gold);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-subtitle::before {
  content: '';
  width: 50px;
  height: 1px;
  background-color: var(--c-gold);
}
.split-content h2 {
  font-size: 3.5rem;
  margin-bottom: 35px;
  line-height: 1.2;
}
.split-content p {
  color: #777;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.bg-dark-section p {
  color: rgba(255,255,255,0.7);
}
.signature {
  font-family: 'Great Vibes', cursive, var(--f-serif);
  color: var(--c-gold);
  font-size: 3rem;
  margin-top: 40px;
  opacity: 0.8;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 40px;
}
.stat-item {
  text-align: center;
}
.stat-item h3 {
  font-size: 4rem;
  color: var(--c-gold);
  margin-bottom: 5px;
  line-height: 1;
}
.stat-item p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

/* 3D Blog Cards */
.blog-card {
  border: none;
  background: var(--c-light);
  height: 100%;
  transform-style: preserve-3d; /* For Tilt.js */
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transform: translateZ(20px); /* 3D pop effect */
}
.blog-card .card-body {
  padding: 40px 30px;
  transform: translateZ(30px); /* 3D pop effect */
}
.blog-card h4 {
  color: var(--c-gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.blog-card .meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  display: flex;
  gap: 20px;
}

/* Premium Footer */
.main-footer {
  background-color: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: 100px 50px 40px;
  font-size: 14px;
}
.main-footer h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.main-footer ul li {
  margin-bottom: 15px;
}
.main-footer ul li a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.main-footer ul li a:hover {
  color: var(--c-gold);
  padding-left: 5px;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.social-icons a {
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--c-gold);
  transform: translateY(-3px);
}

/* WhatsApp Float */
.wa-wrapper {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 15px;
}
.wa-tooltip {
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-wrapper:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.wa-btn {
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}
.wa-btn:hover {
  transform: scale(1.1) rotate(-10deg);
  animation: none;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Google Reviews */
.review-card {
  background: var(--c-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  height: 100%;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-info h5 {
  margin: 0;
  font-size: 15px;
  font-family: var(--f-sans);
  font-weight: 600;
  color: var(--c-dark);
}
.reviewer-info .meta {
  font-size: 12px;
  color: #999;
}
.stars {
  color: #fbbc05;
  font-size: 14px;
  margin-bottom: 15px;
}
.review-text {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
}
.google-logo {
  width: 25px;
  margin-left: auto;
}

@media (max-width: 991px) {
  body { padding-left: 0; }
  .vertical-sidebar { display: none; }
  .main-header { left: 0; padding: 15px 20px; }
  .split-image { background-attachment: scroll; } /* Disable parallax on mobile for performance */
  .hero { background-attachment: scroll; }
  .split-image, .split-content { flex: 0 0 100%; }
  .split-content { padding: 60px 20px; }
  .hero-content { padding-left: 5%; }
}

/* Premium Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-bottom: 3px solid var(--c-gold);
}
.blog-card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 65%; /* aspect ratio */
}
.blog-card-img-wrapper img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.08);
}
.blog-card-body {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-meta i {
  font-size: 0.7rem;
}
.blog-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-title a:hover {
  color: var(--c-gold);
}
.blog-excerpt {
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}
.read-more-link {
  color: var(--c-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}
.read-more-link i {
  margin-left: 8px;
  transition: transform 0.3s;
  color: var(--c-gold);
}
.read-more-link:hover {
  color: var(--c-gold);
}
.read-more-link:hover i {
  transform: translateX(5px);
}
