/*
Theme Name: Truleum Custom Theme - Combined CSS
Description: Combined stylesheet for better performance
Version: 2.0
Author: Dipanshu Kant 
*/

/* ========== BASE STYLES (from style.css) ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-small {
    padding: 60px 0;
}

.wp-block-image {
    margin: 0;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.contact-page {
    margin-bottom: 150px;
}

@media only screen and (min-width: 1024px) {
    .hero-text {
      margin-left: 170px;
    }
}

/* ========== HEADER STYLES ========== */
.main-header {
  width: 100%;
  background: #f0f0f0;
  padding: 10px 0;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

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

.logo-container {
  flex: 0 0 180px;
  z-index: 1000;
}

.logo-container img {
  height: 180px;
  margin-top: 0px;
  width: 180px;
  transition: all 0.3s ease;
}

.desktop-nav {
  flex: 1;
  text-align: center;
}

.desktop-nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 700;
  color: #0a1a4a;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
  transition: width 0.3s ease;
}

.desktop-nav a:hover:after {
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: linear-gradient(135deg, #ffed66 0%, #8b6423 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-nav a.active:after {
  width: 100%;
}

.enquire-btn {
  background: #0a1a4a;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #0a1a4a;
}

.enquire-btn:hover {
  background: #d4af37;
  color: white !important;
  border-color: #d4af37;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1003;
  padding: 10px;
  background: none;
  border: none;
  position: relative;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #0a1a4a;
  margin: 6px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 100px 30px 30px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  z-index: 1001;
  will-change: transform;
  pointer-events: none;
}

.mobile-menu-toggle:checked ~ .mobile-menu {
  pointer-events: auto;
  right: 0;
}

.mobile-menu-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-toggle:checked ~ header .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle:checked ~ header .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle:checked ~ header .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu a {
  display: block;
  margin: 20px 0;
  text-decoration: none;
  color: #0a1a4a;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
  text-align: left;
  position: relative;
  z-index: 1002;
  padding: 10px 0;
  pointer-events: auto;
  cursor: pointer;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #d4af37;
}

.mobile-menu .enquire-btn {
  margin-top: 30px;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 998;
}

@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .enquire-btn.desktop { display: none; }
  .hamburger { display: block; }
  .logo-container { flex: 0 0 auto; }
}

/* ========== HERO SLIDESHOW ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 9999999;
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-text h1 span {
    color: #D4AF37;
    display: block;
    z-index: 99999;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    color: #1a1a1a;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(117, 86, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 86, 29, 0.5);
}

.hero-slide {
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.2rem; }
    .hero-text p { font-size: 1.2rem; }
    .cta-btn { padding: 16px 35px; font-size: 1rem; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 380px; height: 70vh; }
    .hero-text { padding: 0 15px; }
    .hero-text h1 { font-size: 2.5rem; line-height: 1.1; }
    .hero-text p { font-size: 1.1rem; margin-bottom: 30px; }
    .cta-btn { padding: 14px 30px; font-size: 0.95rem; }
    @keyframes kenBurns {
        0% { transform: scale(1); }
        100% { transform: scale(1.05); }
    }
}

@media (max-width: 480px) {
    .hero-section { min-height: 320px; height: 60vh; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
    .cta-btn { padding: 12px 25px; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { animation: none; transition: opacity 1s ease-in-out; }
    .hero-slide.active { animation: none; }
    .hero-text { animation: none; }
    .cta-btn:hover { transform: none; }
}

/* ========== WHY TRULEUM SECTION ========== */
.truleum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    background-size: cover;
    text-align: center;
    margin-top: -40px;
}

.truleum-container h1 {
    color: #0c1b4d;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 1px;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.truleum-container h1 span {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    width: 23%;
    min-width: 240px;
    padding: 40px 20px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.feature-icon {
    background: #0c1b4d;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #d4af37;
}

.feature-text {
    color: #333;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.why-tru {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.why-tru:first-child {
    background: #0c1b4d;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(12, 27, 77, 0.2);
}

.why-tru:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 27, 77, 0.3);
}

.why-tru:last-child {
    background: #d4af37;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.why-tru:last-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .truleum-container h1 { font-size: 30px !important; margin-top: -50px !important; }
}

/* ========== WHO WE ARE SECTION ========== */
.renovation-services {
    padding: 80px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #0a1a4a;
    box-sizing: border-box;
    overflow-x: hidden;
    color: white;
}

.renovation-services ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.renovation-services > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.renovation-services > div > div:first-child {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.renovation-services img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.renovation-services img:hover {
    transform: scale(1.03);
}

.renovation-services > div > div:last-child {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.renovation-services span {
    display: inline-block;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.renovation-services h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.renovation-services p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.renovation-services ul {
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
}

.renovation-services li {
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.renovation-services li i {
    color: #d4af37;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.renovation-services li span {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    position: static !important;
    color: white !important;
    font-size: 16px !important;
}

.renovation-services > div > div:last-child > div {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.renovation-services a:first-of-type {
    display: inline-block;
    background: #d4af37;
    color: white !important;
    text-decoration: none;
    border: 2px;
    border-color: black;
    padding: 20px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.renovation-services a:first-of-type:hover {
    background: #c19b2e;
}

.renovation-services a:last-of-type {
    background: transparent;
    color: #0c1b4d !important;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #0c1b4d;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.renovation-services a:last-of-type:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}

.renovation-services h2,
.renovation-services p,
.renovation-services li {
    color: white !important;
}

/* ========== WHERE WE OPERATE SECTION ========== */
.locations-section {
    padding: 80px 20px;
    background: #f8f9fa;
    font-family: 'Poppins', Arial, sans-serif;
}

.locations-section > div {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: -50px;
    text-align: center;
}

.locations-section h2 {
    color: #0c1b4d;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.locations-section h2 span {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
}

.locations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-card > div {
    width: 80px;
    height: 80px;
    background: #0c1b4d;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.location-card h3 {
    color: #0c1b4d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.location-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.where-we {
    display: inline-block;
    background: #d4af37;
    color: white !important;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.where-we:hover {
    background: #c19b2e;
}

.location-card a:not(.where-we) {
    display: inline-block;
    background: #d4af37;
    color: white !important;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.location-card a:not(.where-we):hover {
    background: #c19b2e;
}

.locations-section > div > div:last-child {
    margin-top: 60px;
}

.locations-section > div > div:last-child p {
    color: #666;
    margin-top: -15px !important;
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.locations-section > div > div:last-child a {
    display: inline-block;
    background: #0c1b4d;
    color: white !important;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.locations-section > div > div:last-child a:hover {
    background: #1a2a5a;
    transform: translateY(-2px);
}

/* ========== DON'T DELAY SECTION ========== */
.contact-cta {
    padding: 80px 20px;
    text-align: center;
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    max-width: 3000px;
    width: 100vw;
    margin: 60px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    overflow-x: hidden;
    background: #0a1a4a;
}

.contact-cta > div {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.dont-delay {
    display: inline-block;
    background: #d4af37;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dont-delay:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ========== FOOTER STYLES ========== */
.site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #F0F0F0;
    padding: 60px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-company-info {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: -40px;
    margin-top: -45px;
}

.footer-company-text {
    color: #142968;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.footer-quick-links {
    flex: 0.5;
    min-width: 200px;
    margin-left: 40px;
}

.footer-section-title {
    color: #142968;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px 0;
    font-family: 'Poppins', Arial, sans-serif;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #142968;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-info {
    flex: 1;
    min-width: 250px;
}

.footer-contact-phone,
.footer-contact-email {
    margin: 0 0 10px 0;
}

.footer-contact-email {
    margin-bottom: 20px;
}

.footer-contact-phone a,
.footer-contact-email a {
    color: #142968;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-contact-address {
    color: #142968;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.site-footer a {
    background-color: unset !important;
}

.site-footer a:hover {
    color: #d4af37 !important;
}

@media (max-width: 768px) {
    .footer-company-info {
        min-width: 100% !important;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ========== SOCIAL FLOAT BUTTONS ========== */
.social-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-float .social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0b1c4d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
}

.social-float .social-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,0.3);
  filter: brightness(1.05);
}

.social-float .btn-whatsapp { background: #25D366; }
.social-float .btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-float .btn-facebook { background: #1877F2; }

.social-float .social-btn i { font-size: 32px; }

.social-float .social-btn .tooltip {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
  color: #0b1c4d;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.social-float .social-btn:hover .tooltip { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .social-float { right: 14px; bottom: 14px; gap: 10px; }
  .social-float .social-btn { width: 50px; height: 50px; }
  .social-float .social-btn i { font-size: 20px; }
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(117, 86, 29, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    margin-left: 10px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ffed66 0%, #8b6423 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(117, 86, 29, 0.4);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 14px;
        font-size: 1.2rem;
    }
}

/* ========== GOOGLE REVIEWS ========== */
.google-reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: -180px;
    margin-bottom: 140px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.google-reviews-section h2 {
    font-size: 44px !important;
}

.google-reviews-section h2 span {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: #d4af37;
}

.trustindex-reviews {
    margin: 40px 0;
    text-align: center;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0c1b4d;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .google-reviews-section { padding: 60px 15px; }
    .reviews-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .reviews-title { font-size: 1.8rem; }
}

/* ========== ENTRANCE ANIMATIONS ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in,
.animate-fade-up.animate-in,
.animate-fade-left.animate-in,
.animate-fade-right.animate-in,
.animate-scale.animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

h1, h2, h3, h4, h5, h6 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section, section, .container, .content-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-btn, .btn, button, .enquire-btn {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

img, .image-container, .gallery-item {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card, .service-card, .process-step, .grid-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

h1.animate-in, h2.animate-in, h3.animate-in, h4.animate-in, h5.animate-in, h6.animate-in,
p.animate-in,
.section.animate-in, section.animate-in, .container.animate-in, .content-section.animate-in,
.cta-btn.animate-in, .btn.animate-in, button.animate-in, .enquire-btn.animate-in,
img.animate-in, .image-container.animate-in, .gallery-item.animate-in,
.card.animate-in, .service-card.animate-in, .process-step.animate-in, .grid-item.animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.hero-text h1,
.hero-text p,
.hero-text .cta-btn {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text h1.animate-in,
.hero-text p.animate-in,
.hero-text .cta-btn.animate-in {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll, .animate-fade-up, .animate-fade-left, .animate-fade-right, .animate-scale,
  h1, h2, h3, h4, h5, h6, p, .section, section, .container, .content-section,
  .cta-btn, .btn, button, .enquire-btn, img, .image-container, .gallery-item,
  .card, .service-card, .process-step, .grid-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.animate-on-scroll, .animate-fade-up, .animate-fade-left, .animate-fade-right, .animate-scale {
  will-change: opacity, transform;
}

.animate-on-scroll.animate-in, .animate-fade-up.animate-in, .animate-fade-left.animate-in,
.animate-fade-right.animate-in, .animate-scale.animate-in {
  will-change: auto;
}
