.boton-elegante {
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  text-decoration: none;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
  transform: scale(4);
}

.boton-elegante:hover {
  border-color: #666666;
  background: #292929;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force all text to be white on dark background */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, td, th {
    color: #ffffff !important;
}

/* Override any remaining light backgrounds */
section, .section, .container, .content, .wrapper, .about, .services, .team, .why-choose-us, .packages, .contact, .consultation, .hero, .footer {
    background: #000000 !important;
}

/* Force all cards to be dark */
.card, .service-card, .stat-card, .testimonial-card, .expertise-item, .pricing-card, .package-card {
    background: #3d3c3d !important;
    color: #ffffff !important;
}

/* Force all forms to be dark */
.form, .consultation-form, .contact-form, .uiverse-form {
    background: #171717 !important;
    color: #ffffff !important;
}

/* Legacy button reset removed to allow explicit component styles */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #000000 !important;
    width: 100%;
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-color: #ffd700;
    --primary-dark: #b8860b;
    --secondary-color: #ffed4e;
    --accent-color: #ff6b35;
    --dark-bg: #000000;
    --dark-secondary: #171717;
    --dark-tertiary: #1a1a1a;
    --card-bg: #3d3c3d;
    --card-inner: #323132;
    --text-primary: #ffffff;
    --text-secondary: #d3d3d3;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ff6b35 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);
    --shadow-primary: 0 20px 25px -5px rgba(255, 215, 0, 0.2), 0 10px 10px -5px rgba(255, 215, 0, 0.1);
    --shadow-secondary: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gap: 5em;
    --line: 1px;
    --color: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(
        -90deg,
        transparent calc(var(--gap) - var(--line)),
        var(--color) calc(var(--gap) - var(--line) + 1px),
        var(--color) var(--gap)
    ),
    linear-gradient(
        0deg,
        transparent calc(var(--gap) - var(--line)),
        var(--color) calc(var(--gap) - var(--line) + 1px),
        var(--color) var(--gap)
    );
    background-size: var(--gap) var(--gap);
}

/* Remove grid background on contact page to avoid any gray tint on sides */
.contact-page {
    background: #000000 !important;
    background-image: none !important;
}

/* Ensure consultation section doesn't overflow */
#consultation {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

#consultation .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar * {
    color: #ffffff !important;
}

.navbar .logo-text {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

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

/* Header CTA button next to nav menu */
.nav-cta { margin-left: 16px; }
.nav-cta .boton-cta { padding: 10px 14px; font-size: 14px; line-height: 1; display: inline-flex; align-items: center; gap: 8px; }
/* Hide mobile hero CTA by default; only show on small phones */
.mobile-hero-cta { display: none !important; }

/* Desktop hero CTA - bigger and more prominent */
.desktop-hero-cta { 
  display: block !important; 
  margin: 30px 0 40px 0; 
  text-align: center;
  position: relative;
  z-index: 10;
}

.desktop-hero-cta .boton-elegante {
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  min-height: 60px;
  border-width: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #1a1a1a;
  border-color: #2c2c2c;
  color: #ffffff;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.4s ease;
  display: inline-block !important;
  width: auto;
  max-width: 400px;
  visibility: visible !important;
  opacity: 1 !important;
}

.desktop-hero-cta .boton-elegante:hover {
  border-color: #666666;
  background: #292929;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .nav-container { gap: 10px; }
  
  /* Hide desktop CTA on mobile */
  .desktop-hero-cta { display: none !important; }
  
  /* Show mobile CTA on mobile */
  .mobile-hero-cta { display: block !important; }
  
  .mobile-hero-cta .boton-elegante { 
    width: 100%; 
    justify-content: center; 
    padding: 18px 24px; 
    font-size: 16px; 
    font-weight: 600;
    min-height: 56px;
    border-width: 2px;
  }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

/* Larger logo specifically in the navbar */
.nav-logo .logo {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Disable underline effect for boton-elegante buttons rendered as nav links */
.nav-link.boton-elegante::after { display: none; width: 0; height: 0; }

/* Ensure header button uses exact boton-elegante style (override nav-link) */
.nav-link.boton-elegante {
    padding: 15px 30px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.nav-link.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.nav-link.boton-elegante:hover::after { transform: scale(4); }

.nav-link.boton-elegante:hover {
  border-color: #666666;
  background: #292929;
  color: #ffffff;
}

.consultation-btn {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 2px solid #2c2c2c !important;
    padding: 12px 24px !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.consultation-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
}

.consultation-btn:hover::after {
    transform: scale(4);
}

.consultation-btn:hover {
    border-color: #666666;
    background: #292929;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff !important;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background: #000000;
    color: #ffffff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* fill viewport on all devices */
    object-position: center center;
    z-index: 0;
    filter: saturate(1.05) brightness(0.9);
}
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-video { height: 100%; object-fit: cover; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
                radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.10) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.10) 0%, transparent 50%);
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Uiverse SVG wrapper positioning */
.uiverse-svg { display: none; }

/* From Uiverse.io by Juanes200122 */
#svg-global {
    zoom: 1.2;
    overflow: visible;
}

@keyframes fade-particles {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

#particles {
    animation: fade-particles 5s infinite alternate;
}
.particle {
    animation: floatUp linear infinite;
}

.p1 { animation-duration: 2.2s; animation-delay: 0s; }
.p2 { animation-duration: 2.5s; animation-delay: 0.3s; }
.p3 { animation-duration: 2s;   animation-delay: 0.6s; }
.p4 { animation-duration: 2.8s; animation-delay: 0.2s; }
.p5 { animation-duration: 2.3s; animation-delay: 0.4s; }
.p6 { animation-duration: 3s;   animation-delay: 0.1s; }
.p7 { animation-duration: 2.1s; animation-delay: 0.5s; }
.p8 { animation-duration: 2.6s; animation-delay: 0.2s; }
.p9 { animation-duration: 2.4s; animation-delay: 0.3s; }

@keyframes bounce-lines {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

#line-v1,
#line-v2,
#node-server,
#panel-rigth,
#reflectores,
#particles {
    animation: bounce-lines 3s ease-in-out infinite alternate;
}
#line-v2 { animation-delay: 0.2s; }

#node-server,
#panel-rigth,
#reflectores,
#particles { animation-delay: 0.4s; }

.floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.02), rgba(59, 130, 246, 0.02));
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    left: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    width: 100%;
}

/* Prevent grid overflow on small screens */
.hero-content, .about-content, .consultation-content, .contact-content, .packages-grid {
    min-width: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-align: center;
    max-width: 1000px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: #d3d3d3;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: scale(4);
}

.btn:hover {
    border-color: #ffd700;
    background: #292929;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.hero-stats .stat-item {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #1a1a1a, #0a0a0a);
    position: relative;
    text-align: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.stat-item::before {
    content: '';
    width: 5px;
    aspect-ratio: 1;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px #ffffff;
    border-radius: 100px;
    z-index: 2;
    right: 10%;
    top: 10%;
    animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
    0%, 100% { top: 10%; right: 10%; }
    25% { top: 10%; right: calc(100% - 35px); }
    50% { top: calc(100% - 30px); right: calc(100% - 35px); }
    75% { top: calc(100% - 30px); right: 10%; }
}

.stat-item {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #333333;
    background: radial-gradient(circle 280px at 0% 0%, #2a2a2a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    color: #ccc;
}

.stat-item::after {
    content: '';
    width: 220px;
    height: 45px;
    border-radius: 100px;
    position: absolute;
    background-color: #c7c7c7;
    opacity: 0.4;
    box-shadow: 0 0 50px #fff;
    filter: blur(10px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    font-weight: bolder;
    font-size: 2rem;
    color: #ddd;
    margin-bottom: 5px;
}

/* Hide border lines on hero stat cards */
.stat-item .line {
    display: none;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--dark-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #d3d3d3;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Use Playfair Display for About section intro text */
.about .section-subtitle {
    font-family: 'Playfair Display', serif;
}

.services-image {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Ensure wrappers don't extend width */
/* Avoid clipping decorative elements; keep overflow default */

.services-hero-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

/* Pricing cards (Cobp) */
/* New Pricing Card (Uiverse by Yaya12085) adapted to grid */
.pricing-card { max-width: 320px; display:flex; flex-direction:column; border-radius: 1.5rem; background-color: #000000; padding: 1.5rem; margin: 0 auto; }
.pricing-card .price { font-size: 2rem; line-height: 1; font-weight: 700; letter-spacing: -0.025em; color: #ffffff; }
.pricing-card .price-period { font-size: 1rem; font-weight: 500; color: #fef1a2; }
.pricing-card .lists { margin-top: 1.5rem; display:flex; flex-direction:column; row-gap: .75rem; font-size: .95rem; line-height: 1.4rem; color: #ffffff; }
.pricing-card .list { display:flex; align-items:center; }
.pricing-card .list svg { display: none; }
.pricing-card .list::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #ffffff; flex-shrink: 0; margin-right: 12px; }
.pricing-card .list span { margin-left: 0; }
.pricing-card .action { margin-top: 1.25rem; width:100%; border: 2px solid #ffffff; border-radius: 9999px; background-color: #ffffff; padding: 0.625rem 1.5rem; text-align: center; font-size: 0.95rem; line-height: 1.25rem; color: #000000; text-decoration:none; transition: all .2s ease; }
.pricing-card .action:hover { color: #ffffff; background-color: transparent; }

/* About Section */
.about, .services, .team, .why-choose-us, .packages, .contact, .consultation {
    padding: 120px 0;
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Uiverse 3D Boxes positioning */
.uiverse-boxes {
    position: absolute;
    right: 60px;
    margin-top: -40px;
    pointer-events: none;
    z-index: 1;
}

/* Variants for different sections */
.uiverse-boxes--hero { right: 40px; top: 140px; position: absolute; z-index: 1; }
.uiverse-boxes--services { right: 0; top: 0; transform: translateX(0); }
.uiverse-boxes--consultation { right: 40px; top: -20px; }
.uiverse-boxes--contact { right: 40px; top: -20px; }
.uiverse-boxes--footer { right: 20px; top: -10px; }

/* Ensure containers can anchor absolute elements */
.consultation .container, .contact .container, .footer .container, .about .container { position: relative; }

/* From Uiverse.io by Nawsome */
.boxes {
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}

.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  -webkit-animation: box1 var(--duration) linear infinite;
  animation: box1 var(--duration) linear infinite;
}

.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  -webkit-animation: box2 var(--duration) linear infinite;
  animation: box2 var(--duration) linear infinite;
}

.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  -webkit-animation: box3 var(--duration) linear infinite;
  animation: box3 var(--duration) linear infinite;
}

.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  -webkit-animation: box4 var(--duration) linear infinite;
  animation: box4 var(--duration) linear infinite;
}

.boxes .box > div {
  --background: #5C8DF6;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}

.boxes .box > div:nth-child(1) { --top: 0; --left: 0; }
.boxes .box > div:nth-child(2) { --background: #145af2; --right: 0; --rotateY: 90deg; }
.boxes .box > div:nth-child(3) { --background: #447cf5; --rotateX: -90deg; }
.boxes .box > div:nth-child(4) { --background: #DBE3F4; --top: 0; --left: 0; --translateZ: calc(var(--size) * 3 * -1); }

@-webkit-keyframes box1 { 0%, 50% { transform: translate(100%, 0); } 100% { transform: translate(200%, 0); } }
@keyframes box1 { 0%, 50% { transform: translate(100%, 0); } 100% { transform: translate(200%, 0); } }

@-webkit-keyframes box2 { 0% { transform: translate(0, 100%); } 50% { transform: translate(0, 0); } 100% { transform: translate(100%, 0); } }
@keyframes box2 { 0% { transform: translate(0, 100%); } 50% { transform: translate(0, 0); } 100% { transform: translate(100%, 0); } }

@-webkit-keyframes box3 { 0%, 50% { transform: translate(100%, 100%); } 100% { transform: translate(0, 100%); } }
@keyframes box3 { 0%, 50% { transform: translate(100%, 100%); } 100% { transform: translate(0, 100%); } }

@-webkit-keyframes box4 { 0% { transform: translate(200%, 0); } 50% { transform: translate(200%, 100%); } 100% { transform: translate(100%, 100%); } }
@keyframes box4 { 0% { transform: translate(200%, 0); } 50% { transform: translate(200%, 100%); } 100% { transform: translate(100%, 100%); } }

.about-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Consultation Section */
.consultation {
    padding: 120px 0;
    background: var(--dark-bg);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Hide decorative boxes from grid layout */
.consultation-content > .uiverse-boxes {
    display: none;
}

.consultation-text {
    min-width: 0;
    overflow: visible;
    word-wrap: break-word;
    padding-right: 20px;
    align-self: center; /* vertically center text within the row height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultation-form {
    width: 100%;
    max-width: 520px;
    flex-shrink: 0;
}

.consultation-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.uiverse-form {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.consultation-form, .contact-form, .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2em;
    background-color: #171717;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form h3, #heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #ffffff;
}

/* Match label font family to headings (inherit) */
.uiverse-form .form-label { font-family: 'Playfair Display', serif; }

.form-label {
    display: block;
    margin: 12px 0 12px;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    color: #ffffff;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea,
.input-field {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    outline: none;
    color: #d3d3d3;
    font-size: 16px;
    transition: var(--transition);
}

.field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border-radius: 25px;
    padding: 0.6em;
    border: none;
    outline: none;
    color: white;
    background-color: #171717;
    box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
    margin-bottom: 20px;
}

.input-icon {
    height: 1.3em;
    width: 1.3em;
    fill: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.input-field:focus {
    outline: none;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Selected package banner shown above contact form when arriving from Services */
.selected-package-banner {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fef1a2;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 700;
}


/* Uiverse.io dark form styling (inspired by themrsami) */
.uiverse-form {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 40px;
}
/* Use homepage dark button style for form submit */
.uiverse-submit, .consultation .consultation-btn, .contact .consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 30px;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.uiverse-submit:hover, .consultation-btn:hover { background: #292929; border-color: #666666; color: #ffd700; }

.uiverse-form h3 { color: var(--text-primary); }
.uiverse-form .form-group input,
.uiverse-form .form-group select,
.uiverse-form .form-group textarea {
    background: var(--card-inner);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 16px;
    box-shadow: inset 2px 5px 10px rgba(5, 5, 5, 0.3);
}
.uiverse-form .form-group input::placeholder,
.uiverse-form .form-group textarea::placeholder { color: var(--text-muted); }
.uiverse-form .form-group input:focus,
.uiverse-form .form-group select:focus,
.uiverse-form .form-group textarea:focus {
    background: var(--dark-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}
.uiverse-submit {
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    color: #783205;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #a55d07;
    width: 100%;
    cursor: pointer;
    transition: transform .15s ease, filter .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uiverse-submit:hover { transform: translateY(-2px); filter: brightness(1.03); }
.uiverse-submit i { margin-right: 8px; }

/* From Uiverse.io by chase2k25 - responsive glass radio group */
.glass-radio-group-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0);
  padding: 1.5rem 1.2rem;
  border: 0px solid rgb(255, 255, 255, 0);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  gap: 0.5rem;
}
.glass-radio-group-vertical input { display: none; }
.glass-radio-group-vertical label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ccc;
  cursor: pointer;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.label-text { flex: 1; display: flex; align-items: center; justify-content: flex-start; }
.radio-indicator {
  width: 1.2rem; height: 1.2rem; border-radius: 50%; background: #999; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: white; box-shadow: 0 0 0 2px transparent; transition: all 0.3s ease-in-out;
}
.checkmark { opacity: 0; transform: scale(0); transition: all 0.3s ease-in-out; }
.glass-glider-vertical {
  position: absolute; left: 0; height: 56px; width: 80%; margin-left: 20px; border-radius: 0.8rem; z-index: 1; transition: transform 0.4s cubic-bezier(0.5, 1.6, 0.4, 1), background 0.5s ease-in-out, box-shadow 0.4s;
}
#glass-silver:checked ~ .glass-glider-vertical { transform: translateY(0%); background: linear-gradient(135deg, #00000050, #d1d1d1cc); box-shadow: 0 0 15px #00000077; }
#glass-silver:checked + label { color: white; }
#glass-silver:checked + label .radio-indicator { background: #c0c0c0; box-shadow: 0 0 0 2px #858585aa, 0 0 6px #6b6b6baa; }
#glass-silver:checked + label .checkmark { opacity: 1; transform: scale(1); }
#glass-gold:checked ~ .glass-glider-vertical { transform: translateY(115%); background: linear-gradient(135deg, #00000050, #ffbb00); box-shadow: 0 0 15px #00000077; }
#glass-gold:checked + label { color: white; }
#glass-gold:checked + label .radio-indicator { background: #ffc400; box-shadow: 0 0 0 2px #9c7300d3, 0 0 6px #695a00aa; }
#glass-gold:checked + label .checkmark { opacity: 1; transform: scale(1); }
#glass-platinum:checked ~ .glass-glider-vertical { transform: translateY(230%); background: linear-gradient(135deg, #00000050, #57d5ff); box-shadow: 0 0 15px #00000077; }
#glass-platinum:checked + label { color: white; }
#glass-platinum:checked + label .radio-indicator { background: #75c5ff; box-shadow: 0 0 0 2px #0095ff5b, 0 0 6px #0095ff57; }
#glass-platinum:checked + label .checkmark { opacity: 1; transform: scale(1); }

/* Contact form variant ids */
#glass-silver-contact:checked ~ .glass-glider-vertical { transform: translateY(0%); background: linear-gradient(135deg, #00000050, #d1d1d1cc); box-shadow: 0 0 15px #00000077; }
#glass-silver-contact:checked + label { color: white; }
#glass-silver-contact:checked + label .radio-indicator { background: #c0c0c0; box-shadow: 0 0 0 2px #858585aa, 0 0 6px #6b6b6baa; }
#glass-silver-contact:checked + label .checkmark { opacity: 1; transform: scale(1); }
#glass-gold-contact:checked ~ .glass-glider-vertical { transform: translateY(115%); background: linear-gradient(135deg, #00000050, #ffbb00); box-shadow: 0 0 15px #00000077; }
#glass-gold-contact:checked + label { color: white; }
#glass-gold-contact:checked + label .radio-indicator { background: #ffc400; box-shadow: 0 0 0 2px #9c7300d3, 0 0 6px #695a00aa; }
#glass-gold-contact:checked + label .checkmark { opacity: 1; transform: scale(1); }
#glass-platinum-contact:checked ~ .glass-glider-vertical { transform: translateY(230%); background: linear-gradient(135deg, #00000050, #57d5ff); box-shadow: 0 0 15px #00000077; }
#glass-platinum-contact:checked + label { color: white; }
#glass-platinum-contact:checked + label .radio-indicator { background: #75c5ff; box-shadow: 0 0 0 2px #0095ff5b, 0 0 6px #0095ff57; }
#glass-platinum-contact:checked + label .checkmark { opacity: 1; transform: scale(1); }
.glass-radio-group-vertical:has(#glass-silver:checked) { border-color: #c0c0c0; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(255,255,255,.4); }
.glass-radio-group-vertical:has(#glass-gold:checked) { border-color: #ffbb00; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(255,196,0,.527); }
.glass-radio-group-vertical:has(#glass-platinum:checked) { border-color: #57d5ff; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(0,183,255,.63); }
.glass-radio-group-vertical:has(#glass-regular:checked) { border-color: #4ecdc4; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(78,205,196,.4); }
.glass-radio-group-vertical:has(#glass-notsure:checked) { border-color: #ff6b6b; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(255,107,107,.4); background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,107,107,0.05)); }
.glass-radio-group-vertical:has(#glass-guidance:checked) { border-color: #4ecdc4; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(78,205,196,.4); background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(78,205,196,0.05)); }

/* Guidance option in pack selection */
.glass-radio-group-vertical:has(#glass-guidance:checked) { border-color: #ff6b6b; box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 8px rgba(255,107,107,.4); background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,107,107,0.05)); }
#glass-guidance:checked + label .radio-indicator { background: #ff6b6b; box-shadow: 0 0 0 2px #ff6b6b5b, 0 0 6px #ff6b6b57; }
#glass-guidance:checked + label .checkmark { opacity: 1; transform: scale(1); }

/* Hide guidance option when coming from services page */
.guidance-option { 
  display: block; 
  transition: all 0.3s ease;
}
.guidance-option.hidden { 
  display: none !important; 
}

/* Individual radio indicator styles for consultation type */
#glass-notsure:checked + label .radio-indicator { background: #ff6b6b; box-shadow: 0 0 0 2px #ff6b6b5b, 0 0 6px #ff6b6b57; }
#glass-notsure:checked + label .checkmark { opacity: 1; transform: scale(1); }
#glass-guidance:checked + label .radio-indicator { background: #4ecdc4; box-shadow: 0 0 0 2px #4ecdc45b, 0 0 6px #4ecdc457; }
#glass-guidance:checked + label .checkmark { opacity: 1; transform: scale(1); }

/* Date input styling to match theme */
#consultation-date {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

#consultation-date:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

#consultation-date::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Time input styling to match theme */
#consultation-time {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Ensure dropdown options are visible with dark background and white text */
#consultation-time option {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 12px;
}

#consultation-time:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

#consultation-time::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.time-note {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Timezone select styling to match theme */
#timezone {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Ensure timezone dropdown options are visible with dark background and white text */
#timezone optgroup {
  background: #1a1a1a !important;
  color: #ffd700 !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
}

#timezone option {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 12px;
}

#timezone:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}

#timezone option {
  background: #1a1a1a;
  color: white;
  padding: 0.5rem;
}

#timezone optgroup {
  background: #2a2a2a;
  color: #4ecdc4;
  font-weight: bold;
  padding: 0.5rem;
}

.form-label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

@media (max-width: 480px) {
  .glass-glider-vertical { width: 88%; margin-left: 12px; height: 52px; }
}

/* Footer */
.footer {
    background: #000000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Make footer logo match navbar scale */
.footer-logo .logo {
    height: 80px;
    width: auto;
}

.footer-description {
    color: #d3d3d3;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d3d3d3;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #d3d3d3;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: #d4af37 !important;
    width: 20px;
    font-size: 16px;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--dark-secondary);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.close {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 32px;
    max-height: 60vh;
    overflow-y: auto;
}

.dashboard-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.orders-list,
.consultations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item,
.consultation-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.order-item:hover,
.consultation-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .uiverse-boxes { display: none; }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95) !important;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile navigation links styling */
    @media (max-width: 768px) {
        .nav-menu .nav-link {
            color: #ffffff !important;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            width: 100%;
            display: block;
        }
        
        .nav-menu .nav-link:hover,
        .nav-menu .nav-link.active {
            color: #ffd700 !important;
            background: rgba(255, 215, 0, 0.1);
        }
    }
    
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-stats .stat-item { width: 100%; height: 100px; }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .consultation-content,
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .consultation-text {
        padding-right: 0;
    }
    
    .contact-page #consultation .calendly-full {
        margin: 40px 0 0 0;
        width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn { padding: 12px 22px; font-size: 14px; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .services-hero-image {
        height: 200px;
    }
    
    .team-image {
        height: 300px;
    }
}

/* Reduce risk of horizontal overflow at tablet widths */
@media (max-width: 1024px) {
    /* Keep hero boxes hidden on tablet to prevent overflow, but allow others */
    .uiverse-boxes--hero { display: none; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    /* Hide header CTA and show hero CTA on small phones */
    .nav-cta { display: none; }
    
    /* Hide first button on mobile for main/home pages (keep mobile CTA instead) */
    /* Don't hide the Explore Packages button on mobile */
    .hero-buttons a:nth-child(1) {
        display: block !important;
    }
    .mobile-hero-cta { 
        display: block; 
        margin: 20px 0 25px 0; 
        padding: 0 5px;
    }
    
    .mobile-hero-cta .boton-elegante {
        padding: 20px 28px;
        font-size: 18px;
        font-weight: 700;
        min-height: 64px;
        border-width: 3px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 24px;
    }
    
    .consultation-form,
    .contact-form {
        padding: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .services-hero-image {
        height: 150px;
    }
    
    .team-image {
        height: 250px;
    }
    
    .hero-description { font-size: 0.98rem; }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* Global reveal-on-scroll utilities (2.3s as requested) */
.reveal-up { opacity: 0; transform: translateY(30px); }
.reveal-left { opacity: 0; transform: translateX(-30px); }
.reveal-right { opacity: 0; transform: translateX(30px); }

.reveal-in.reveal-up { animation: fadeInUp 2.3s ease-out forwards; }
.reveal-in.reveal-left { animation: fadeInLeft 2.3s ease-out forwards; }
.reveal-in.reveal-right { animation: fadeInRight 2.3s ease-out forwards; }

/* Page enter/exit transitions */
@keyframes pageFadeIn {
    from { opacity: 0; filter: blur(4px); }
    to { opacity: 1; filter: blur(0); }
}

@keyframes pageFadeOut {
    from { opacity: 1; filter: blur(0); }
    to { opacity: 0; filter: blur(4px); }
}

body.page-enter { animation: pageFadeIn 2.3s ease-out; }
body.page-exit { animation: pageFadeOut 2.3s ease-in forwards; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 6px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Contact page: neutralize yellow scrollbar so no vertical yellow line shows */
.contact-page { scrollbar-color: #2b2b2b #000000; scrollbar-width: none; }
.contact-page ::-webkit-scrollbar-thumb { background: #2b2b2b !important; border-color: #000000 !important; }
.contact-page ::-webkit-scrollbar-thumb:hover { background: #3a3a3a !important; }
.contact-page ::-webkit-scrollbar-track { background: #000000 !important; }
/* Hide scrollbar while keeping scroll functionality */
.contact-page::-webkit-scrollbar { width: 0 !important; height: 0 !important; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Social Media Icons with Tooltips - From Uiverse.io by MrBishtji */
#SocailIcons {
    display: none;
}

/* Footer new social buttons */
.footer-social { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }

/* From Uiverse.io by asgardOP - footer social buttons */
.button {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: 0.1s;
}
.button svg { color: white; width: 30px; height: 30px; z-index: 9; }
.footer-social .button:nth-child(2) { background: linear-gradient(120deg, #02ff2c, #008a12); }
.footer-social .button:nth-child(3) { background: rgb(69, 187, 255); }
.button:active { transform: scale(0.85); }
.button::before { content: ""; position: absolute; width: 55px; height: 55px; background-color: #212121; border-radius: 50px; z-index: -1; border: 0px solid rgba(255, 255, 255, 0.411); transition: 0.4s; }
.button:hover::before { width: 0px; height: 0px; }

.icons {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    border: none;
    z-index: 1;
    text-align: center;
    position: relative;
}

.iconName {
    position: absolute;
    top: -40px;
    font-size: 12px;
    color: #fff;
    transform: scale(0);
    border-radius: 3px;
    text-align: center;
    padding: 3px 8px;
    transition: transform 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.icons.instaIcon:hover .iconName {
    transform: scale(1);
    background: linear-gradient(30deg, #0000ff, #f56040);
}

.icons.linkedin:hover .iconName {
    transform: scale(1);
    background: #0274b3;
}

.icons.whatsapp:hover .iconName {
    transform: scale(1);
    background: #25d366;
}

.icons.facebook:hover .iconName {
    transform: scale(1);
    background: #1877f2;
}

.icon {
    z-index: 1;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    transition: color 0.3s ease;
    color: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon:hover {
    color: #fff;
}

.icon::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 50%;
    transform: rotateX(360deg);
    transition: height 0.3s ease;
    z-index: -1;
}

.icon:hover::before {
    height: 100%;
    z-index: 1;
}

.icon:hover {
    box-shadow: 5px 5px 10px #181717ce;
}

.icon.insta::before {
    z-index: -1;
    background: linear-gradient(40deg, #0000ff, #f56040);
}

.icon.link::before {
    z-index: -1;
    background: #0274b3;
}

.icon.whats::before {
    z-index: -1;
    background: #25d366;
}

.icon.fb::before {
    z-index: -1;
    background: #1877f2;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-us .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.why-choose-us .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Make all Why Choose stat cards use the new black glow style */
.why-choose-us .stat-item {
  background-color: rgb(15, 15, 15) !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: 0 0 50px 0px, inset 0 0 90px 0px !important;
}
.why-choose-us .stat-item:hover {
  transform: none !important;
  box-shadow: 0 0 50px 0px, inset 5px 5px 20px 0px black !important;
}
.why-choose-us .stat-item .line { display: none !important; }
.why-choose-us .stat-icon { color: #ffffff !important; filter: none !important; }
.why-choose-us .stat-number { color: #ffffff !important; background: none !important; -webkit-background-clip: initial !important; -webkit-text-fill-color: initial !important; filter: none !important; }
.why-choose-us .stat-number { color: #ffffff !important; }
.why-choose-us .stat-label { color: #e5e7eb !important; }

/* Uiverse white stat card replacement */
.why-choose-us .one-div {
  position: relative;
  height: 250px;
  width: 100%;
  background-color: rgb(15, 15, 15);
  transform-style: preserve-3d;
  animation: rot 2s infinite ease;
  border-radius: 20px;
  box-shadow: 0 0 50px 0px, inset 0 0 90px 0px;
  color: #ffffff;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-choose-us .one-div .text { opacity: 0; transition: all 0.5s; color: #ffffff !important; font-weight: 700; font-size: 1.5rem; }
.why-choose-us .one-div:hover .text { scale: 1.2; opacity: 0.7; }
.why-choose-us .one-div:hover { box-shadow: 0 0 50px 0px, inset 5px 5px 20px 0px black; }
@keyframes rot { 0% { transform: rotateX(-15deg) translateY(0px); } 50% { transform: rotateX(-15deg) translateY(-10px); } 100% { transform: rotateX(-15deg) translateY(0px); } }

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.why-choose-us .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #bbb;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
    font-family: 'Playfair Display', serif;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    display: block !important;
    visibility: visible !important;
}

.quote-icon i {
  display: inline-block !important;
  visibility: visible !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}

.quote-icon svg {
  width: 32px !important;
  height: 32px !important;
  color: white !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Package styling */
.package-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  text-align: center;
}

.package-focus,
.package-ideal {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid #d4af37;
}

.package-focus strong,
.package-ideal strong {
  color: #d4af37;
  font-weight: 600;
}

.package-goal {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid #d4af37;
}

.package-goal strong {
  color: #d4af37;
  font-weight: 600;
}

/* QR Code Location Card */
.qr-location-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.qr-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.qr-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.qr-card-header h4 {
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qr-card-header p {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin: 0;
}

.qr-code-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-code-image {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.qr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.qr-code-container:hover .qr-overlay {
  opacity: 1;
}

.qr-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.qr-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer QR Code */
.footer-location {
  margin-top: 15px;
}

.footer-qr-container {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-qr-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-qr-container:hover::before {
  left: 100%;
}

.footer-qr-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.footer-qr-code {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  background: white;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.footer-qr-container:hover .footer-qr-code {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-location-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.footer-location-text p {
  margin: 3px 0;
  color: #e5e5e5;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-location-text p:first-child {
  color: #d4af37;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-location-text p:last-child {
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-map-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-map-link:hover {
  color: #1f2937;
  background: #d4af37;
  transform: translateX(3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Social Media Link Styling */
.social-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.2);
}

/* Responsive QR Code */
@media (max-width: 768px) {
  .qr-location-card {
    margin-top: 20px;
    padding: 20px;
  }
  
  .qr-code-image {
    width: 120px;
    height: 120px;
  }
  
  .footer-qr-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-qr-code {
    width: 50px;
    height: 50px;
  }
}

/* Remove empty space in pricing cards */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
}

.pricing-card .lists {
  flex-grow: 1;
  margin-bottom: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: white;
    font-family: 'Inter', sans-serif;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.rating {
    color: white;
    font-size: 1rem;
}

/* Expertise Section */
.expertise-section {
    margin-bottom: 80px;
}

.expertise-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expertise-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    display: block !important;
    visibility: visible !important;
}

.expertise-icon i {
  display: inline-block !important;
  visibility: visible !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}

.expertise-icon svg {
  width: 48px !important;
  height: 48px !important;
  color: white !important;
  display: block !important;
  margin: 0 auto !important;
}

.expertise-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

/* Call to Action */
.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 40px;
}

.cta-content {
    flex: 1;
    text-align: center;
}

.cta-loader {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Ensure the heading clears the fixed header on small phones */
    .why-choose-us { padding-top: 120px; }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 10px;
    }
    
    .why-choose-us .stat-item {
        padding: 15px 8px;
        font-size: 0.85rem;
    }
    
    .why-choose-us .stat-number {
        font-size: 1.8rem;
    }
    
    .why-choose-us .stat-label {
        font-size: 0.75rem;
    }
}

/* Extra small phones - make cards even more compact */
@media (max-width: 375px) {
    .why-choose-us .stats-grid {
        gap: 6px;
        padding: 0 5px;
    }
    
    .why-choose-us .stat-item {
        padding: 12px 6px;
    }
    
    .why-choose-us .stat-number {
        font-size: 1.6rem;
    }
    
    .why-choose-us .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-title,
    .expertise-title,
    .cta-title {
        font-size: 2rem;
    }
}

/* Hand Loader Animation - From Uiverse.io by Pradeepsaranbishnoi */
.🤚 {
  --skin-color: #E4C560;
  --tap-speed: 0.6s;
  --tap-stagger: 0.1s;
  position: relative;
  width: 80px;
  height: 60px;
  margin-left: 80px;
}

.🤚:before {
  content: '';
  display: block;
  width: 180%;
  height: 75%;
  position: absolute;
  top: 70%;
  right: 20%;
  background-color: black;
  border-radius: 40px 10px;
  filter: blur(10px);
  opacity: 0.3;
}

.🌴 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--skin-color);
  border-radius: 10px 40px;
}

.👍 {
  position: absolute;
  width: 120%;
  height: 38px;
  background-color: var(--skin-color);
  bottom: -18%;
  right: 1%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-20deg);
  border-radius: 30px 20px 20px 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.👍:after {
  width: 20%;
  height: 60%;
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: -8%;
  left: 5px;
  border-radius: 60% 10% 10% 30%;
  border-right: 2px solid rgba(0, 0, 0, 0.05);
}

.👉 {
  position: absolute;
  width: 80%;
  height: 35px;
  background-color: var(--skin-color);
  bottom: 32%;
  right: 64%;
  transform-origin: 100% 20px;
  animation-duration: calc(var(--tap-speed) * 2);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: rotate(10deg);
}

.👉:before {
  content: '';
  position: absolute;
  width: 140%;
  height: 30px;
  background-color: var(--skin-color);
  bottom: 8%;
  right: 65%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-60deg);
  border-radius: 20px;
}

.👉:nth-child(1) {
  animation-delay: 0;
  filter: brightness(70%);
  animation-name: tap-upper-1;
}

.👉:nth-child(2) {
  animation-delay: var(--tap-stagger);
  filter: brightness(80%);
  animation-name: tap-upper-2;
}

.👉:nth-child(3) {
  animation-delay: calc(var(--tap-stagger) * 2);
  filter: brightness(90%);
  animation-name: tap-upper-3;
}

.👉:nth-child(4) {
  animation-delay: calc(var(--tap-stagger) * 3);
  filter: brightness(100%);
  animation-name: tap-upper-4;
}

@keyframes tap-upper-1 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.4);
  }

  40% {
    transform: rotate(50deg) scale(0.4);
  }
}

@keyframes tap-upper-2 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.6);
  }

  40% {
    transform: rotate(50deg) scale(0.6);
  }
}

@keyframes tap-upper-3 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.8);
  }

  40% {
    transform: rotate(50deg) scale(0.8);
  }
}

@keyframes tap-upper-4 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(1);
  }

  40% {
    transform: rotate(50deg) scale(1);
  }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .🤚 {
        margin-left: 0;
    }
}

/* Admin Access Button */
.admin-access-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    color: #1f2937;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.admin-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.admin-access-btn i {
    font-size: 16px;
    color: #1f2937;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
}

@media (max-width: 768px) {
    .admin-access-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
    }
    
    .admin-access-btn a {
        font-size: 12px;
    }
    
    .admin-access-btn span {
        display: none;
    }
}

/* Services Section Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card, .card, .stat-card, .testimonial-card, .expertise-item {
    background: #3d3c3d;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card::before, .card::before, .stat-card::before, .testimonial-card::before, .expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #323132;
    opacity: 0.9;
    border-radius: 20px;
    z-index: 1;
}

.service-card > *, .card > *, .stat-card > *, .testimonial-card > *, .expertise-item > * {
    position: relative;
    z-index: 2;
}

.service-card:hover, .card:hover, .stat-card:hover, .testimonial-card:hover, .expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    visibility: visible !important;
}

.service-icon i {
  display: inline-block !important;
  visibility: visible !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}

.service-icon svg {
  width: 48px !important;
  height: 48px !important;
  color: white !important;
  display: block !important;
  margin: 0 auto !important;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

/* About Us Section Styling */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.team-member {
    width: 300px;
    height: 250px;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.team-member::before {
    content: '';
    width: 5px;
    aspect-ratio: 1;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px #ffffff;
    border-radius: 100px;
    z-index: 2;
    right: 10%;
    top: 10%;
    animation: moveDot 6s linear infinite;
}

.team-member {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #202222;
    background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    color: #fff;
    padding: 18px;
}

.team-member::after {
    content: '';
    width: 220px;
    height: 45px;
    border-radius: 100px;
    position: absolute;
    background-color: #c7c7c7;
    opacity: 0.4;
    box-shadow: 0 0 50px #fff;
    filter: blur(10px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffd700;
    box-shadow: none;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
    text-align: center;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
}

.member-role {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffd700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.member-description {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d3d3d3;
    text-align: center;
}

.team-conclusion {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    margin-top: 40px;
    text-align: center;
}

/* Quote card styling (simplified) */
.quote-card {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 24px 32px;
  background-color: #3d3c3d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.quote-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.quote-text, .quote-subtext { margin: 0; }
.quote-text {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.quote-subtext {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* Why Choose Us: Uiverse.io Spacious74 card skin for the transformation block */
.why-choose-us .outer {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;
}
.why-choose-us .dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}
.why-choose-us .card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #202222;
  background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
  padding: 24px;
}
.why-choose-us .ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}
.why-choose-us .line { width: 100%; height: 1px; position: absolute; background-color: #2c2c2c; }
.why-choose-us .topl { top: 10%; background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%); }
.why-choose-us .bottoml { bottom: 10%; }
.why-choose-us .leftl { left: 10%; width: 1px; height: 100%; background: linear-gradient(180deg, #747474 30%, #222424 70%); }
.why-choose-us .rightl { right: 10%; width: 1px; height: 100%; }

/* Typography: Playfair Display for the transformation text area */
.why-choose-us .quote-text-container,
.why-choose-us .quote-text {
  font-family: 'Playfair Display', serif !important;
}

/* Keep readability */
.why-choose-us .quote-text { font-size: 1.15rem; font-weight: 500; font-style: normal; }

/* Make Why Choose transformation card use the same chrome/gloss card as expert team */
.quote-card-why {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
}
.quote-card-why .quote-text { color: #ffffff; }

@media (max-width: 768px) {
  .why-choose-us .outer { padding: 1px; }
  .why-choose-us .card { padding: 18px; }
  .why-choose-us .ray { width: 180px; }
}

/* Homepage Transformation Card (Uiverse.io by Spacious74) - scoped to avoid conflicts */
.transformation-card { display: flex; justify-content: center; margin: 30px 0; }
.transformation-card .outer {
  width: 300px;
  height: 250px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;
}
.transformation-card .dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}
.transformation-card .card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #202222;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 12px;
}
.transformation-card .ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}
.transformation-card .card .text {
  font-weight: 700;
  font-size: 1rem;
  background: none;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
}
.transformation-card .line { width: 100%; height: 1px; position: absolute; background-color: #2c2c2c; }
.transformation-card .topl { top: 10%; background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%); }
.transformation-card .bottoml { bottom: 10%; }
.transformation-card .leftl { left: 10%; width: 1px; height: 100%; background: linear-gradient(180deg, #747474 30%, #222424 70%); }
.transformation-card .rightl { right: 10%; width: 1px; height: 100%; }
.transformation-card .content { font-family: 'Playfair Display', serif; font-size: 0.95rem; line-height: 1.5; padding: 0 12px; }

@media (max-width: 768px) {
  .transformation-card .outer { width: 100%; max-width: 360px; height: auto; }
  .transformation-card .card { min-height: 260px; padding: 16px; }
}

/* Expert Team Section */
.expert-team {
  padding: 100px 0;
  background: var(--dark-bg);
}
.expert-team .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.expert-team .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.expert-team .section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.expert-team .expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.expert-team .expertise-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--dark-secondary);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.expert-team .expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}
.expert-team .expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  background: none;
}
.expert-team .expertise-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
}
.expert-team .expertise-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-member {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .member-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .team-conclusion {
        padding: 20px;
    }
}

/* Theme: Gold/White/Black Overrides */
:root {
  --gold-1: #a54e07;
  --gold-2: #b47e11;
  --gold-3: #fef1a2;
  --gold-4: #bc881b;
  --gold-5: #a55d07;
  --primary-color: #b47e11;
  --primary-dark: #a55d07;
  --secondary-color: #a54e07;
  --accent-color: #bc881b;
  --dark-bg: #e5e7eb;
  --dark-secondary: #ffffff;
  --dark-tertiary: #f1f3f4;
  --text-primary: #0f172a;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --gradient-primary: linear-gradient(160deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-4), var(--gold-1));
  --gradient-secondary: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-4) 100%);
  --gradient-dark: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

body, .services, .about, .consultation, .contact { background: var(--dark-bg); }

/* New Uiverse button style (vinodjangid07) applied to all gold buttons */
.Btn,
.golden-button,
.btn-primary,
.btn-secondary,
.card-btn {
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(to right,#bf953f,#fcf6ba,#b38728,#fbf5b7,#aa771c);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8em;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition-duration: 3s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  background-size: 200% 200%;
  text-decoration: none;
  padding: 0;
}

.Btn svg,
.golden-button svg,
.btn-primary svg,
.btn-secondary svg,
.card-btn svg {
  width: 1em;
  height: 1em;
}

.Btn svg path,
.golden-button svg path,
.btn-primary svg path,
.btn-secondary svg path,
.card-btn svg path {
  fill: rgb(121, 103, 3);
}

.Btn:hover,
.golden-button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.card-btn:hover {
  transform: scale(0.95);
  transition-duration: 3s;
  animation: gradient 5s ease infinite;
  background-position: right;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Icon styling - clean without backgrounds */
.service-icon, .stat-icon, .expertise-icon, .contact-icon { 
    color: var(--primary-color); 
    background: none; 
    font-size: 2.5rem;
}
.rating { color: var(--primary-color); }

/* 3D boxes recolor to gold tones */
.boxes .box > div { background: #b47e11 !important; }
.boxes .box > div:nth-child(2) { background: #a55d07 !important; }
.boxes .box > div:nth-child(3) { background: #bc881b !important; }
.boxes .box > div:nth-child(4) { background: #fef1a2 !important; }

/* Why Choose section on white */
.why-choose-us { background: #000000; color: #ffffff; }
.why-choose-us .section-title { color: #ffffff; }
.why-choose-us .section-subtitle { color: #d1d5db; }
/* Stats cards use black glow style */
.why-choose-us .stats-grid .stat-item { background: rgb(15,15,15) !important; border: none !important; backdrop-filter: none !important; box-shadow: 0 0 50px 0px, inset 0 0 90px 0px !important; }
.why-choose-us .stats-grid .stat-item:hover { box-shadow: 0 0 50px 0px, inset 5px 5px 20px 0px black !important; }
.why-choose-us .stat-icon { color: #ffffff !important; filter: none !important; }
.why-choose-us .stat-number { color: #ffffff !important; background: none !important; -webkit-background-clip: initial !important; -webkit-text-fill-color: initial !important; filter: none !important; }
.why-choose-us .stat-label { color: #e5e7eb !important; }
/* Testimonial and Expertise cards on white */
.testimonial-card, .expertise-item { background: var(--dark-secondary); border: 1px solid rgba(0, 0, 0, 0.1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); }
.testimonial-text {
  color: var(--text-secondary);
  font-family: 'Playfair Display', serif !important;
  font-style: normal !important;
}
.quote-icon { color: #0f172a; }
/* Ensure all icons inside why-choose are visible on gold accents */
.why-choose-us i { color: #ffffff !important; }
/* CTA section on white */
.why-choose-us .cta-section { background: #ffffff; border: 1px solid #e5e7eb; }
.why-choose-us .cta-title, .why-choose-us .cta-subtitle { color: var(--text-primary); font-family: 'Playfair Display', serif; }
.why-choose-us .cta-subtitle { color: var(--text-secondary); }
.why-choose-us .cta-buttons .btn-primary { 
  border: 1px solid #a55d07;
  background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
  color: #783205;
}
.why-choose-us .cta-buttons .btn-primary:hover { filter: brightness(1.03); transform: translateY(-3px); }
.why-choose-us .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}
.why-choose-us .cta-buttons .btn-secondary:hover { background: var(--primary-color); color: #ffffff; }

/* Our Expert Team block inside Why Choose */
.why-choose-us .expertise-title { color: var(--text-primary); font-family: 'Playfair Display', serif; }
.why-choose-us .expertise-item h4 { color: var(--text-primary); font-family: 'Playfair Display', serif; }
.why-choose-us .expertise-item p { color: var(--text-secondary); font-family: 'Inter', sans-serif; }
.why-choose-us .expertise-icon { color: #0f172a; }

/* Who Is This For block - align typography with Services */
.why-choose-us .testimonials-title { color: var(--text-primary); font-family: 'Playfair Display', serif; }
.why-choose-us .testimonial-text { font-family: 'Inter', sans-serif; color: var(--text-secondary); }

/* Pricing Cards Styling - Original Black */
.card {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  background-color: rgba(0, 0, 0, 1);
  padding: 1.5rem;
}

.price {
  font-size: 3rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 1);
}

.lists {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  grid-row-gap: 0.75rem;
  row-gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 1);
}

.list {
  display: flex;
  align-items: center;
}

.list svg {
  height: 1rem;
  width: 1rem;
}

.list svg path {
  fill: #ffffff;
}

.list span {
  margin-left: 1rem;
}

/* Smooth transition for form hide/show */
#consultationFormContainer {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#consultationFormContainer[style*="display: none"] {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

#calendlySection {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

#calendlySection[style*="display: block"] {
  opacity: 1;
  transform: translateY(0);
}

/* Calendly Widget Styling */
.calendly-container {
  margin-top: 10px;
  padding: 0;
  background: transparent !important;
}

.calendly-container h4 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.calendly-button {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  font-size: 1.05rem !important;
  padding: 14px 22px !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
}

.calendly-button i {
  margin-right: 10px;
}

/* inline SVG icon inside Calendly button */
.calendly-button .calendly-icon { width: 22px; height: 22px; margin-right: 10px; vertical-align: middle; }

/* Title and subtitle tweaks for Calendly block */
.calendly-title { color: #ffffff !important; margin: 0 0 6px 0 !important; font-weight: 700; }
.calendly-subtitle { color: var(--text-secondary) !important; margin: 0 0 14px 0 !important; font-size: 0.95rem; }
.calendly-cta { text-align: center; padding: 10px 0 6px 0; }

/* Make Calendly match dark theme */
.calendly-inline-widget iframe {
  background: transparent !important;
}

/* Ensure Calendly widget has enough height to show confirm button */
.contact-page #consultation .calendly-full .calendly-inline-widget {
  min-height: 1000px !important;
  height: 1000px !important;
  overflow: visible !important;
}

/* Force iframe to show full content */
.contact-page #consultation .calendly-full .calendly-inline-widget iframe {
  min-height: 1000px !important;
  height: 1000px !important;
}

/* Note: Calendly buttons are inside iframe, so we can't style them directly */
/* The confirm button will appear when all required fields are filled */

/* Override Calendly colors for dark theme */
.calendly-popup-content {
  background: #171717 !important;
}

/* Responsive adjustments for Calendly */
@media (max-width: 768px) {
  .calendly-container {
    padding: 15px;
    margin: 15px 0;
  }
  
  .calendly-inline-widget {
    min-height: 600px;
  }
}

/* Calendly row scoped to contact page — stays inside container and doesn't break layout */
.contact-page #consultation .calendly-full {
  margin: 40px auto 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1040px; /* constrain width for better readability */
  clear: both;
  box-sizing: border-box;
}
.contact-page #consultation .calendly-full .calendly-title {
  color: #ffffff;
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.contact-page #consultation .calendly-full .calendly-subtitle {
  color: var(--text-secondary);
  margin: 0 0 20px 0;
  font-size: 1rem;
  text-align: center;
}
.contact-page #consultation .calendly-full .calendly-inline-widget {
  min-width: 100% !important;
  width: 100% !important;
  height: 820px !important; /* smaller, tighter box */
  border: none !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 16px 44px rgba(0,0,0,.4), 0 0 28px rgba(255,215,0,.06) !important;
  background: #0b0b0b !important;
}

@media (max-width: 1200px) {
  .contact-page #consultation .calendly-full { max-width: 960px; }
  .contact-page #consultation .calendly-full .calendly-inline-widget { height: 760px !important; }
}

@media (max-width: 992px) {
  .contact-page #consultation .calendly-full { max-width: 840px; }
  .contact-page #consultation .calendly-full .calendly-inline-widget { height: 700px !important; }
}

@media (max-width: 768px) {
  .contact-page #consultation .calendly-full { max-width: 100%; margin: 30px 0 0 0; }
  .contact-page #consultation .calendly-full .calendly-inline-widget { height: calc(100vh - 96px) !important; }
}
.contact-page #consultation .calendly-full .calendly-inline-widget iframe {
  width: 100% !important;
  height: 1100px !important;
  border: none !important;
}
@media (max-width: 1200px) {
  .contact-page #consultation .calendly-full .calendly-inline-widget,
  .contact-page #consultation .calendly-full .calendly-inline-widget iframe { height: 1000px !important; }
}
@media (max-width: 768px) {
  .contact-page #consultation .calendly-full .calendly-inline-widget,
  .contact-page #consultation .calendly-full .calendly-inline-widget iframe { height: 900px !important; }
}

.action {
  margin-top: 2rem;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 1);
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000 !important;
  font-weight: 600;
  outline: none;
  transition: all .2s ease;
  text-decoration: none;
}

.action:hover {
  color: #ffffff !important;
  background-color: transparent;
}

/* Button reset: apply exact 'boton-elegante' style to homepage and form buttons */
.btn, .uiverse-submit {
  padding: 15px 30px !important;
  border: 2px solid #2c2c2c !important;
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  border-radius: 30px !important;
  transition: all 0.4s ease !important;
  outline: none !important;
  position: relative !important;
  overflow: hidden !important;
  font-weight: bold !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.btn::after, .uiverse-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.btn:hover::after, .uiverse-submit:hover::after { transform: scale(4); }

.btn:hover, .uiverse-submit:hover {
  border-color: #666666 !important;
  background: #292929 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Center the last 'Who Is This For?' card on desktop when it stands alone */
@media (min-width: 1024px) {
  #who-for .testimonials-grid > .testimonial-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* New loader (Uiverse.io by Saad3092003) */
.obj {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  transition: 0.5s all;
  transform: rotateX(-25deg) rotateY(20deg);
}

.objchild {
  animation: rotate 4s infinite linear;
  transform-style: preserve-3d;
  position: absolute;
  width: 100%;
  height: 100%;
}

.objchild::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(20px);
  box-shadow: 0 0 200px 15px white;
  transform: rotateX(90deg) scale(1.1) translateZ(-120px);
}

.inn6 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(21, 21, 21);
  transform: rotateX(90deg) translateZ(100px);
  animation: updown 4s infinite ease-in-out;
}

@keyframes rotate {
  0% { transform: rotate3d(0,1,0,0deg); }
  100% { transform: rotate3d(0,1,0,360deg); }
}

@keyframes updown {
  0% { transform: translateY(100px) rotateX(90deg) translateZ(100px); }
  50% { transform: translateY(200px); }
  100% { transform: translateY(100px) rotateX(450deg) translateZ(100px); }
}

/* Position loaders inside hero side gutters */
.hero-loader {
  position: absolute;
  top: 18%;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}
.hero-loader--left { left: 40px; }
.hero-loader--right { right: 40px; }

@media (max-width: 1024px) {
  .hero-loader { display: none; }
}

/* Forms size adjustments: smaller but keep horizontal two-column layout */
.consultation-form, .contact-form, .form {
  width: 100%;
  max-width: 520px;
  padding: 24px !important;
}
.uiverse-form { padding: 24px !important; }
.form-group { margin-bottom: 16px; }
.form h3, #heading { margin-bottom: 20px; }
.glass-radio-group-vertical { max-width: 300px; }
