/* ============================================
   AQUA LIFE BEAUTY - Premium CSS
   Gold & Black Luxury Theme
   ============================================ */

/* CSS Variables */
:root {
    --alb-gold: #C9A962;
    --alb-gold-light: #E5D4A1;
    --alb-gold-dark: #9A7B3E;
    --alb-black: #0A0A0A;
    --alb-black-light: #1A1A1A;
    --alb-black-medium: #2A2A2A;
    --alb-white: #FFFFFF;
    --alb-white-muted: rgba(255, 255, 255, 0.7);
    --alb-white-subtle: rgba(255, 255, 255, 0.5);
    --alb-gradient-gold: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    --alb-gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    --alb-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --alb-shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.3);
    --alb-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --alb-font-display: 'Playfair Display', Georgia, serif;
    --alb-font-body: 'Montserrat', -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--alb-font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--alb-white);
    background: var(--alb-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--alb-transition);
}

ul, ol {
    list-style: none;
}

/* ============================================
   PRELOADER
   ============================================ */
.alb-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--alb-black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    /* CSS Fallback: Auto-hide after 4 seconds even if JS fails */
    animation: preloader-auto-hide 0.6s ease 4s forwards;
}

@keyframes preloader-auto-hide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.alb-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: none; /* Cancel CSS animation when JS handles it */
}

.alb-preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.alb-preloader-logo {
    font-family: var(--alb-font-display);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--alb-gold);
    margin-bottom: 30px;
    animation: alb-pulse 2s ease-in-out infinite;
}

.alb-preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--alb-black-medium);
    border-radius: 2px;
    overflow: hidden;
}

.alb-preloader-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--alb-gradient-gold);
    animation: alb-loading 2s ease-in-out infinite;
}

@keyframes alb-loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes alb-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.alb-section-title {
    font-family: var(--alb-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.alb-gold-text {
    color: var(--alb-gold);
}

.alb-text-white {
    color: var(--alb-white);
}

.alb-text-white-muted {
    color: var(--alb-white-muted);
}

.alb-text-center {
    text-align: center;
}

/* ============================================
   CONTAINER
   ============================================ */
.alb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .alb-container {
        padding: 0 20px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.alb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--alb-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--alb-transition);
    position: relative;
    overflow: hidden;
}

.alb-btn-gold {
    background: var(--alb-gold);
    color: var(--alb-black);
}

.alb-btn-gold:hover {
    background: var(--alb-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--alb-shadow-gold);
}

.alb-btn-dark {
    background: var(--alb-black);
    color: var(--alb-white);
    border: 1px solid var(--alb-black-medium);
}

.alb-btn-dark:hover {
    background: var(--alb-black-light);
    border-color: var(--alb-gold);
    color: var(--alb-gold);
}

.alb-btn-outline {
    background: transparent;
    color: var(--alb-white);
    border: 1px solid var(--alb-white-subtle);
}

.alb-btn-outline:hover {
    background: var(--alb-white);
    color: var(--alb-black);
}

.alb-btn-outline-light {
    background: transparent;
    color: var(--alb-white);
    border: 1px solid var(--alb-white-subtle);
}

.alb-btn-outline-light:hover {
    background: var(--alb-white);
    color: var(--alb-black);
}

.alb-btn-lg {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.alb-btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* ============================================
   SECTION LABELS
   ============================================ */
.alb-section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.alb-section-label span:not(.alb-gold-line-sm) {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--alb-gold);
}

.alb-section-label-center {
    justify-content: center;
}

.alb-gold-line,
.alb-gold-line-sm {
    display: block;
    height: 1px;
    background: var(--alb-gold);
}

.alb-gold-line {
    width: 60px;
}

.alb-gold-line-sm {
    width: 30px;
}

.alb-section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.alb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--alb-transition);
}

.alb-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.alb-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alb-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.alb-logo-main {
    font-family: var(--alb-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--alb-white);
}

.alb-logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--alb-gold);
    margin-top: 2px;
}

.alb-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.alb-nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--alb-white-muted);
    position: relative;
}

.alb-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--alb-gold);
    transition: var(--alb-transition);
}

.alb-nav-link:hover,
.alb-nav-link.active {
    color: var(--alb-white);
}

.alb-nav-link:hover::after,
.alb-nav-link.active::after {
    width: 100%;
}

/* Highlighted nav link (e.g., free skin analysis) */
.alb-nav-link-highlight {
    color: var(--alb-gold) !important;
    font-weight: 600;
    background: rgba(201, 169, 98, 0.15);
    padding: 6px 14px !important;
    border-radius: 4px;
    border: 1px solid var(--alb-gold);
    font-size: 0.8rem;
    white-space: nowrap;
}

.alb-nav-link-highlight::after {
    display: none !important;
}

.alb-nav-link-highlight:hover {
    background: var(--alb-gold);
    color: var(--alb-black) !important;
}

.alb-mobile-nav-link-highlight {
    color: var(--alb-black) !important;
    font-weight: 600;
    background: linear-gradient(135deg, var(--alb-gold) 0%, var(--alb-gold-dark) 100%);
    border-radius: 8px;
    padding: 12px 20px !important;
    margin: 10px 0;
    text-align: center;
    display: block;
}

.alb-mobile-nav-link-highlight::before {
    content: '✨ ';
}

.alb-header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.alb-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--alb-white-muted);
}

.alb-header-phone:hover {
    color: var(--alb-gold);
}

.alb-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.alb-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--alb-white);
    transition: var(--alb-transition);
}

.alb-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.alb-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.alb-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.alb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.alb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.alb-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.alb-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    padding-top: 120px;
}

.alb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.alb-hero-badge span:not(.alb-gold-line) {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--alb-gold);
}

.alb-hero-title {
    font-family: var(--alb-font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.alb-hero-title-line {
    display: block;
}

.alb-hero-desc {
    font-size: 1.1rem;
    color: var(--alb-white-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.alb-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.alb-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

.alb-stat {
    text-align: center;
}

.alb-stat-number {
    display: block;
    font-family: var(--alb-font-body);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--alb-gold);
    letter-spacing: 2px;
}

.alb-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--alb-white-muted);
}

.alb-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--alb-white-subtle);
}

.alb-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.alb-hero-scroll span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--alb-white-subtle);
}

.alb-scroll-indicator {
    width: 20px;
    height: 35px;
    border: 1px solid var(--alb-white-subtle);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.alb-scroll-indicator span {
    width: 3px;
    height: 8px;
    background: var(--alb-gold);
    border-radius: 2px;
    animation: alb-scroll 1.5s ease-in-out infinite;
}

@keyframes alb-scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.alb-about {
    padding: 120px 0;
    background: var(--alb-black);
}

.alb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alb-about-images {
    position: relative;
    height: 600px;
}

.alb-about-img {
    position: absolute;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--alb-shadow);
}

.alb-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alb-about-img-1 {
    top: 0;
    left: 0;
    width: 60%;
    height: 70%;
    z-index: 1;
}

.alb-about-img-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    z-index: 2;
    border: 5px solid var(--alb-black);
}

.alb-about-badge {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--alb-gold);
    padding: 25px 35px;
    text-align: center;
}

.alb-about-badge-number {
    display: block;
    font-family: var(--alb-font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--alb-black);
}

.alb-about-badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--alb-black);
}

.alb-about-content {
    padding-left: 20px;
}

.alb-about-text {
    font-size: 1rem;
    color: var(--alb-white-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.alb-about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.alb-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.alb-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--alb-black-light);
    border: 1px solid var(--alb-black-medium);
    color: var(--alb-gold);
}

.alb-feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.alb-feature-content p {
    font-size: 0.85rem;
    color: var(--alb-white-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.alb-services {
    position: relative;
    padding: 120px 0;
    background: var(--alb-black-light);
}

.alb-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.alb-section-header {
    margin-bottom: 60px;
}

.alb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.alb-service-card {
    position: relative;
    background: var(--alb-black);
    border: 1px solid var(--alb-black-medium);
    transition: var(--alb-transition);
    overflow: hidden;
}

.alb-service-card:hover {
    border-color: var(--alb-gold);
    transform: translateY(-10px);
    box-shadow: var(--alb-shadow);
}

.alb-service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: var(--alb-gold);
    color: var(--alb-black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
}

.alb-service-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.alb-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--alb-transition);
}

.alb-service-card:hover .alb-service-img img {
    transform: scale(1.1);
}

.alb-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--alb-transition);
}

.alb-service-card:hover .alb-service-overlay {
    opacity: 1;
}

.alb-service-content {
    padding: 30px;
}

.alb-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--alb-black-light);
    border: 1px solid var(--alb-black-medium);
    color: var(--alb-gold);
    margin-bottom: 20px;
    transition: var(--alb-transition);
}

.alb-service-card:hover .alb-service-icon {
    background: var(--alb-gold);
    color: var(--alb-black);
}

.alb-service-title {
    font-family: var(--alb-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.alb-service-desc {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.alb-service-list {
    border-top: 1px solid var(--alb-black-medium);
    padding-top: 20px;
}

.alb-service-list li {
    font-size: 0.85rem;
    color: var(--alb-white-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.alb-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--alb-gold);
}

.alb-service-featured {
    border-color: var(--alb-gold);
}

.alb-services-cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.alb-gallery {
    padding: 120px 0;
    background: var(--alb-black);
}

.alb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.alb-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.alb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--alb-transition);
}

.alb-gallery-item:hover img {
    transform: scale(1.1);
}

.alb-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--alb-transition);
}

.alb-gallery-item:hover .alb-gallery-overlay {
    opacity: 1;
}

.alb-gallery-title {
    font-family: var(--alb-font-display);
    font-size: 1.1rem;
    color: var(--alb-white);
}

.alb-gallery-wide {
    grid-column: span 2;
}

.alb-gallery-tall {
    grid-row: span 2;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.alb-testimonials {
    padding: 120px 0;
    background: var(--alb-black-light);
}

.alb-testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.alb-testimonial-card {
    background: var(--alb-black);
    border: 1px solid var(--alb-black-medium);
    padding: 40px;
    transition: var(--alb-transition);
}

.alb-testimonial-card:hover {
    border-color: var(--alb-gold);
}

.alb-testimonial-stars {
    color: var(--alb-gold);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.alb-testimonial-text {
    font-size: 1rem;
    color: var(--alb-white-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.alb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alb-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.alb-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alb-testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.alb-testimonial-service {
    font-size: 0.8rem;
    color: var(--alb-gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.alb-cta {
    position: relative;
    padding: 120px 0;
    background: var(--alb-black);
    overflow: hidden;
}

.alb-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.alb-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.alb-cta-title {
    font-family: var(--alb-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.alb-cta-desc {
    font-size: 1.1rem;
    color: var(--alb-white-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.alb-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.alb-contact {
    padding: 120px 0;
    background: var(--alb-black-light);
}

.alb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.alb-contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.alb-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.alb-contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--alb-gold);
    color: var(--alb-black);
}

.alb-contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.alb-contact-text p {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    line-height: 1.6;
}

.alb-contact-text a {
    color: var(--alb-white-muted);
}

.alb-contact-text a:hover {
    color: var(--alb-gold);
}

.alb-social-links {
    display: flex;
    gap: 15px;
}

.alb-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--alb-black);
    border: 1px solid var(--alb-black-medium);
    color: var(--alb-white-muted);
    transition: var(--alb-transition);
}

.alb-social-link:hover {
    background: var(--alb-gold);
    border-color: var(--alb-gold);
    color: var(--alb-black);
}

.alb-contact-map {
    height: 100%;
    min-height: 400px;
    background: var(--alb-black);
    border: 1px solid var(--alb-black-medium);
}

.alb-contact-map iframe {
    filter: grayscale(100%) invert(92%) contrast(85%);
}

/* ============================================
   FOOTER
   ============================================ */
.alb-footer {
    background: var(--alb-black);
}

.alb-footer-top {
    padding: 80px 0;
    border-top: 1px solid var(--alb-black-medium);
}

.alb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.alb-logo-footer .alb-logo-main {
    font-size: 1.3rem;
}

.alb-footer-desc {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    line-height: 1.8;
    margin-top: 20px;
}

.alb-footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--alb-white);
}

.alb-footer-links ul li {
    margin-bottom: 12px;
}

.alb-footer-links ul li a {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
}

.alb-footer-links ul li a:hover {
    color: var(--alb-gold);
}

.alb-footer-contact p {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.alb-footer-contact a {
    color: var(--alb-white-muted);
}

.alb-footer-contact a:hover {
    color: var(--alb-gold);
}

.alb-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.alb-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--alb-black-light);
    border: 1px solid var(--alb-black-medium);
    color: var(--alb-white-muted);
    transition: var(--alb-transition);
}

.alb-footer-social a:hover {
    background: var(--alb-gold);
    border-color: var(--alb-gold);
    color: var(--alb-black);
}

.alb-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--alb-black-medium);
    text-align: center;
}

.alb-footer-bottom p {
    font-size: 0.85rem;
    color: var(--alb-white-subtle);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.alb-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--alb-transition);
}

.alb-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .alb-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .alb-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--alb-black);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--alb-transition);
    }
    
    .alb-nav.open {
        right: 0;
    }
    
    .alb-nav-link {
        font-size: 1.2rem;
    }
    
    .alb-header-actions {
        display: none;
    }
    
    .alb-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .alb-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .alb-about-images {
        height: 500px;
    }
    
    .alb-about-content {
        padding-left: 0;
    }
    
    .alb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .alb-gallery-wide,
    .alb-gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .alb-testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .alb-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .alb-header-container {
        padding: 0 20px;
    }
    
    .alb-hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .alb-stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .alb-services-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-about-images {
        height: 400px;
    }
    
    .alb-about-img-1 {
        width: 70%;
        height: 60%;
    }
    
    .alb-about-img-2 {
        width: 60%;
        height: 50%;
    }
    
    .alb-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .alb-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .alb-hero-buttons {
        flex-direction: column;
    }
    
    .alb-btn-lg {
        padding: 16px 30px;
        width: 100%;
    }
    
    .alb-cta-buttons {
        flex-direction: column;
    }
    
    .alb-cta-buttons .alb-btn {
        width: 100%;
    }
}

/* ============================================
   NAVIGATION DROPDOWN
   ============================================ */
.alb-nav-dropdown {
    position: relative;
}

.alb-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.alb-nav-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.alb-nav-dropdown:hover .alb-nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.alb-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--alb-black-light);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.alb-nav-dropdown:hover .alb-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.alb-nav-dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    transition: all 0.3s ease;
}

.alb-nav-dropdown-menu a:hover,
.alb-nav-dropdown-menu a.active {
    color: var(--alb-gold);
    background: rgba(201, 169, 98, 0.1);
    padding-left: 30px;
}

/* Mega Dropdown Menu */
.alb-nav-dropdown-mega {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-width: 700px;
    padding: 20px;
    gap: 10px;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(0);
}

.alb-nav-dropdown:hover .alb-nav-dropdown-mega {
    transform: translateX(-50%) translateY(0);
}

.alb-dropdown-column {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.alb-dropdown-column:not(:last-child) {
    border-right: 1px solid rgba(201, 169, 98, 0.15);
}

.alb-dropdown-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--alb-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.alb-nav-dropdown-mega .alb-dropdown-column a {
    padding: 8px 12px;
    font-size: 0.85rem;
}

.alb-nav-dropdown-mega .alb-dropdown-column a:hover {
    padding-left: 16px;
}

/* Mobile Dropdown Category Titles */
.alb-mobile-dropdown-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--alb-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 0 8px;
    margin-top: 10px;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.alb-mobile-dropdown-title:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 5px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.alb-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--alb-black);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 30px 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.alb-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.alb-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.alb-mobile-nav-link {
    font-family: var(--alb-font-display);
    font-size: 1.5rem;
    color: var(--alb-white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alb-mobile-nav-link:hover,
.alb-mobile-nav-link.active {
    color: var(--alb-gold);
}

.alb-mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.alb-mobile-dropdown.active .alb-mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.alb-mobile-dropdown-menu {
    display: none;
    padding: 10px 0 10px 20px;
    background: rgba(255, 255, 255, 0.03);
}

.alb-mobile-dropdown.active .alb-mobile-dropdown-menu {
    display: block;
}

.alb-mobile-dropdown-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--alb-white-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.alb-mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

.alb-mobile-dropdown-menu a:hover,
.alb-mobile-dropdown-menu a.active {
    color: var(--alb-gold);
}

.alb-mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.alb-page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--alb-black) 0%, var(--alb-black-light) 100%);
    overflow: hidden;
}

.alb-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
}

.alb-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--alb-white-muted);
}

.alb-breadcrumb a {
    color: var(--alb-white-muted);
    transition: color 0.3s ease;
}

.alb-breadcrumb a:hover {
    color: var(--alb-gold);
}

.alb-breadcrumb span:last-child {
    color: var(--alb-gold);
}

.alb-page-title {
    font-family: var(--alb-font-display);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--alb-white);
}

.alb-page-subtitle {
    font-size: 1.1rem;
    color: var(--alb-white-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.alb-service-detail {
    padding: 100px 0;
}

.alb-service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alb-service-detail-content {
    max-width: 540px;
}

.alb-service-detail-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--alb-white-muted);
    margin-bottom: 20px;
}

.alb-service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.alb-service-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alb-service-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alb-gold);
    flex-shrink: 0;
}

.alb-service-feature span {
    font-size: 0.95rem;
    color: var(--alb-white);
}

.alb-service-detail-image {
    position: relative;
}

.alb-service-detail-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.alb-service-detail-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--alb-gold);
    color: var(--alb-black);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
}

.alb-badge-icon {
    display: block;
    margin-bottom: 8px;
}

.alb-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICE PACKAGES
   ============================================ */
.alb-service-packages {
    padding: 100px 0;
    background: var(--alb-black-light);
}

.alb-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.alb-package-card {
    background: var(--alb-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.alb-package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.alb-package-featured {
    border-color: var(--alb-gold);
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, var(--alb-black) 100%);
}

.alb-package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--alb-gold);
    color: var(--alb-black);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alb-package-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alb-package-title {
    font-family: var(--alb-font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--alb-white);
}

.alb-package-desc {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
}

.alb-package-content {
    padding: 30px;
}

.alb-package-list {
    margin-bottom: 30px;
}

.alb-package-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--alb-white-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.alb-package-list li::before {
    content: '✓';
    color: var(--alb-gold);
    font-weight: 600;
}

.alb-package-list li:last-child {
    border-bottom: none;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.alb-faq {
    padding: 100px 0;
}

.alb-faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.alb-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alb-faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--alb-white);
    font-family: var(--alb-font-body);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: color 0.3s ease;
}

.alb-faq-question:hover {
    color: var(--alb-gold);
}

.alb-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--alb-gold);
}

.alb-faq-item.active .alb-faq-question svg {
    transform: rotate(180deg);
}

.alb-faq-answer {
    display: none;
    padding: 0 0 25px 0;
}

.alb-faq-item.active .alb-faq-answer {
    display: block;
}

.alb-faq-answer p {
    color: var(--alb-white-muted);
    line-height: 1.8;
}

/* ============================================
   OTHER SERVICES
   ============================================ */
.alb-other-services {
    padding: 100px 0;
    background: var(--alb-black-light);
}

.alb-other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.alb-other-service-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.alb-other-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alb-other-service-card:hover img {
    transform: scale(1.1);
}

.alb-other-service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.alb-other-service-overlay h4 {
    font-family: var(--alb-font-display);
    font-size: 1.3rem;
    color: var(--alb-white);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.alb-contact {
    padding: 100px 0;
}

.alb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.alb-contact-desc {
    font-size: 1.05rem;
    color: var(--alb-white-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.alb-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.alb-contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--alb-black-light);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.alb-contact-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.alb-contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alb-gold);
    flex-shrink: 0;
}

.alb-contact-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--alb-white);
}

.alb-contact-card-content p {
    color: var(--alb-white-muted);
    line-height: 1.6;
}

.alb-contact-card-content p a {
    color: var(--alb-gold);
}

.alb-contact-card-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--alb-gold);
    font-size: 0.9rem;
}

.alb-contact-card-note {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--alb-white-subtle);
}

.alb-contact-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.alb-contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alb-white-muted);
    transition: all 0.3s ease;
}

.alb-contact-social a:hover {
    border-color: var(--alb-gold);
    color: var(--alb-gold);
    background: rgba(201, 169, 98, 0.1);
}

/* Contact Form */
.alb-contact-form-wrapper {
    position: relative;
}

.alb-contact-form-card {
    background: var(--alb-black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
}

.alb-contact-form-title {
    font-family: var(--alb-font-display);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--alb-white);
}

.alb-contact-form-desc {
    color: var(--alb-white-muted);
    margin-bottom: 30px;
}

.alb-form-group {
    margin-bottom: 20px;
}

.alb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alb-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--alb-white);
}

.alb-form-input,
.alb-form-select,
.alb-form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--alb-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--alb-white);
    font-family: var(--alb-font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.alb-form-input:focus,
.alb-form-select:focus,
.alb-form-textarea:focus {
    outline: none;
    border-color: var(--alb-gold);
}

.alb-form-input::placeholder,
.alb-form-textarea::placeholder {
    color: var(--alb-white-subtle);
}

.alb-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23C9A962' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.alb-form-select option {
    background: var(--alb-black);
    color: var(--alb-white);
}

.alb-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.alb-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alb-form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--alb-gold);
    cursor: pointer;
}

.alb-form-checkbox label {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    cursor: pointer;
}

/* Map Section */
.alb-map {
    background: var(--alb-black-light);
}

.alb-map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.alb-map-container iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   ABOUT PAGE - ADDITIONAL STYLES
   ============================================ */
.alb-about-page-content {
    padding: 100px 0;
}

.alb-story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.alb-story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--alb-white-muted);
    margin-bottom: 20px;
}

.alb-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.alb-value-card {
    background: var(--alb-black-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.alb-value-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-10px);
}

.alb-value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alb-gold);
}

.alb-value-card h4 {
    font-family: var(--alb-font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--alb-white);
}

.alb-value-card p {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    line-height: 1.6;
}

/* Stats Section */
.alb-stats-section {
    padding: 80px 0;
    background: var(--alb-black-light);
}

.alb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.alb-stat-card {
    text-align: center;
}

.alb-stat-card-number {
    font-family: var(--alb-font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--alb-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.alb-stat-card-label {
    font-size: 1rem;
    color: var(--alb-white-muted);
}

/* Team Section */
.alb-team-section {
    padding: 100px 0;
}

.alb-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.alb-team-card {
    background: var(--alb-black-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.alb-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.alb-team-image {
    height: 280px;
    overflow: hidden;
}

.alb-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alb-team-card:hover .alb-team-image img {
    transform: scale(1.1);
}

.alb-team-info {
    padding: 25px;
    text-align: center;
}

.alb-team-info h4 {
    font-family: var(--alb-font-display);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--alb-white);
}

.alb-team-info p {
    font-size: 0.9rem;
    color: var(--alb-gold);
}

/* Services Page Grid */
.alb-services-page {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--alb-black) 0%, var(--alb-black-light) 50%, var(--alb-black) 100%);
}

.alb-services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Services Page Card - Premium Design */
.alb-service-page-card {
    position: relative;
    background: var(--alb-black-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
}

.alb-service-page-card:hover {
    transform: translateY(-15px);
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(201, 169, 98, 0.1);
}

.alb-service-page-card.alb-service-page-featured {
    border-color: var(--alb-gold);
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, var(--alb-black-light) 100%);
}

.alb-service-page-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--alb-gradient-gold);
    color: var(--alb-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.alb-service-page-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.alb-service-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.alb-service-page-card:hover .alb-service-page-img img {
    transform: scale(1.1);
}

.alb-service-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    pointer-events: none;
}

.alb-service-page-content {
    padding: 35px 30px 40px;
}

.alb-service-page-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--alb-gold);
    transition: all 0.4s ease;
}

.alb-service-page-card:hover .alb-service-page-icon {
    background: var(--alb-gold);
    color: var(--alb-black);
    transform: scale(1.1);
}

.alb-service-page-title {
    font-family: var(--alb-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--alb-white);
}

.alb-service-page-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--alb-white-muted);
    margin-bottom: 20px;
}

.alb-service-page-list {
    margin-bottom: 25px;
}

.alb-service-page-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.alb-service-page-list li:last-child {
    border-bottom: none;
}

.alb-service-page-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--alb-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.alb-service-page-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--alb-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.alb-service-page-card:hover .alb-service-page-link {
    gap: 15px;
}

/* ============================================
   WHY CHOOSE US SECTION - Premium Design
   ============================================ */
.alb-why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--alb-black) 0%, var(--alb-black-light) 100%);
}

.alb-why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alb-why-choose-content .alb-section-title {
    margin-bottom: 40px;
}

.alb-why-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.alb-why-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.alb-why-item:hover {
    transform: translateX(10px);
    border-color: rgba(201, 169, 98, 0.3);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.alb-why-item-number {
    font-family: var(--alb-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alb-gold);
    opacity: 0.5;
    flex-shrink: 0;
    width: 45px;
}

.alb-why-item-content h4 {
    font-family: var(--alb-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--alb-white);
    margin-bottom: 8px;
}

.alb-why-item-content p {
    font-size: 0.95rem;
    color: var(--alb-white-muted);
    line-height: 1.6;
    margin: 0;
}

.alb-why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.alb-why-choose-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.alb-why-choose-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--alb-gold);
    color: var(--alb-black);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.4);
}

.alb-why-badge-number {
    display: block;
    font-family: var(--alb-font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.alb-why-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT STORY SECTION - Premium Design
   ============================================ */
.alb-about-story {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--alb-black) 0%, var(--alb-black-light) 100%);
}

.alb-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.alb-about-story-content .alb-section-title {
    margin-bottom: 30px;
}

.alb-about-story-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--alb-white-muted);
    margin-bottom: 20px;
}

.alb-about-story-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.alb-about-story-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.alb-about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alb-about-story-img-1 {
    width: 100%;
    max-width: 400px;
    height: 280px;
    border: 3px solid rgba(201, 169, 98, 0.3);
    align-self: flex-start;
}

.alb-about-story-img-2 {
    width: 100%;
    max-width: 350px;
    height: 240px;
    align-self: flex-end;
    margin-top: -60px;
    margin-right: 20px;
}

.alb-about-story-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--alb-gold);
    color: var(--alb-black);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
}

.alb-about-year-number {
    display: block;
    font-family: var(--alb-font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.alb-about-year-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Values Section - Premium */
.alb-values {
    padding: 100px 0;
    background: var(--alb-black);
}

.alb-value-card {
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, var(--alb-black-light) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.alb-value-card:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.alb-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alb-gold);
    transition: all 0.4s ease;
}

.alb-value-card:hover .alb-value-icon {
    background: var(--alb-gold);
    color: var(--alb-black);
}

.alb-value-title {
    font-family: var(--alb-font-display);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--alb-white);
}

.alb-value-text {
    font-size: 0.95rem;
    color: var(--alb-white-muted);
    line-height: 1.7;
}

/* Stats Section - Premium */
.alb-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--alb-black-light) 0%, var(--alb-black) 50%, var(--alb-black-light) 100%);
    position: relative;
    overflow: hidden;
}

.alb-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.alb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.alb-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.alb-stat-item:hover {
    background: rgba(201, 169, 98, 0.05);
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-5px);
}

.alb-stat-item .alb-stat-number {
    font-family: var(--alb-font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--alb-gold);
    line-height: 1;
    display: inline;
}

.alb-stat-plus {
    font-family: var(--alb-font-display);
    font-size: 2rem;
    color: var(--alb-gold);
}

.alb-stat-item .alb-stat-label {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: var(--alb-white-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Team Section - Premium */
.alb-team {
    padding: 100px 0;
    background: var(--alb-black);
}

.alb-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.alb-team-card {
    background: var(--alb-black-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.alb-team-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.alb-team-img {
    height: 280px;
    overflow: hidden;
}

.alb-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alb-team-card:hover .alb-team-img img {
    transform: scale(1.1);
}

.alb-team-content {
    padding: 25px;
    text-align: center;
}

.alb-team-name {
    font-family: var(--alb-font-display);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--alb-white);
}

.alb-team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--alb-gold);
    margin-bottom: 8px;
}

.alb-team-desc {
    font-size: 0.85rem;
    color: var(--alb-white-muted);
}

/* Header Solid State */
.alb-header-solid {
    background: var(--alb-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE - NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
    .alb-service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .alb-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alb-other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alb-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .alb-story-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .alb-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alb-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alb-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alb-services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .alb-nav-dropdown-menu {
        display: none;
    }
    
    .alb-page-header {
        padding: 140px 0 70px;
    }
    
    .alb-page-title {
        font-size: 2.5rem;
    }
    
    .alb-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-other-services-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-service-features {
        grid-template-columns: 1fr;
    }
    
    .alb-form-row {
        grid-template-columns: 1fr;
    }
    
    .alb-contact-form-card {
        padding: 30px;
    }
    
    .alb-values-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .alb-team-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-services-page-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-service-detail-image img {
        height: 400px;
    }
    
    .alb-about-story-img-1 {
        max-width: 320px;
        height: 220px;
    }
    
    .alb-about-story-img-2 {
        max-width: 280px;
        height: 180px;
        margin-top: -40px;
    }
    
    .alb-about-story-year {
        padding: 20px;
    }
    
    .alb-about-year-number {
        font-size: 1.5rem;
    }
    
    .alb-stat-item .alb-stat-number {
        font-size: 2.5rem;
    }
    
    .alb-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .alb-why-choose-image {
        order: -1;
    }
    
    .alb-why-choose-image img {
        height: 400px;
    }
    
    .alb-why-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .alb-page-title {
        font-size: 2rem;
    }
    
    .alb-stat-card-number {
        font-size: 2.5rem;
    }
    
    .alb-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .alb-about-story-img-1 {
        max-width: 100%;
        height: 200px;
    }
    
    .alb-about-story-img-2 {
        max-width: 100%;
        height: 160px;
        margin-top: -30px;
        margin-right: 0;
    }
    
    .alb-about-story-year {
        padding: 15px;
    }
    
    .alb-about-year-number {
        font-size: 1.3rem;
    }
    
    .alb-about-year-text {
        font-size: 0.7rem;
    }
    
    .alb-why-choose-image img {
        height: 300px;
    }
    
    .alb-why-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .alb-why-item-number {
        font-size: 1.2rem;
    }
    
    .alb-why-badge-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   FLOATING SKIN ANALYSIS TAB
   ============================================ */
.alb-floating-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
}

.alb-floating-tab-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--alb-gold) 0%, var(--alb-gold-dark) 100%);
    color: var(--alb-black);
    padding: 12px 8px;
    cursor: pointer;
    border: none;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--alb-transition);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--alb-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 180px;
}

.alb-floating-tab-trigger:hover {
    padding-right: 15px;
    box-shadow: -6px 6px 30px rgba(201, 169, 98, 0.4);
}

.alb-floating-tab-trigger svg {
    transform: rotate(90deg);
}

.alb-floating-tab-trigger .alb-pulse-dot {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: alb-pulse-animation 2s ease-in-out infinite;
}

@keyframes alb-pulse-animation {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Tab attention animation */
@keyframes alb-tab-attention {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(0); }
}

.alb-floating-tab-trigger {
    animation: alb-tab-attention 3s ease-in-out infinite;
    animation-delay: 2s;
}

.alb-floating-tab-trigger:hover {
    animation: none;
}

/* Floating Tab Popup (Ticket Style) */
.alb-floating-popup {
    position: fixed;
    right: 0;
    top: 50%;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: var(--alb-black-light);
    border: 1px solid var(--alb-gold);
    border-radius: 12px 0 0 12px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%) translateX(100%);
    overflow: hidden;
}

.alb-floating-popup.active {
    transform: translateY(-50%) translateX(0);
}

/* LEFT SIDE Floating Tab & Popup */
.alb-floating-tab-left {
    left: 0;
    right: auto;
}

.alb-floating-tab-trigger-left {
    border-radius: 0 8px 8px 0;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.alb-floating-tab-trigger-left:hover {
    padding-left: 15px;
    padding-right: 8px;
    box-shadow: 6px 6px 30px rgba(37, 211, 102, 0.4);
}

@keyframes alb-tab-attention-left {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(8px); }
    75% { transform: translateX(0); }
}

.alb-floating-tab-trigger-left {
    animation: alb-tab-attention-left 3s ease-in-out infinite;
    animation-delay: 3s;
}

.alb-floating-tab-trigger-left:hover {
    animation: none;
}

.alb-floating-popup-left {
    position: fixed;
    left: 0;
    right: auto;
    top: 50%;
    border-radius: 0 12px 12px 0;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%) translateX(-100%);
}

.alb-floating-popup-left.active {
    transform: translateY(-50%) translateX(0);
}

/* Promo specific styles */
.alb-promo-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.alb-badge-fire {
    background: #ff4444 !important;
    color: white !important;
}

.alb-promo-code-box {
    background: var(--alb-black);
    border: 2px dashed var(--alb-gold);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.alb-promo-label {
    display: block;
    font-size: 0.75rem;
    color: var(--alb-white-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alb-promo-code {
    font-family: var(--alb-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--alb-gold);
    letter-spacing: 4px;
}

.alb-copy-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--alb-white-muted);
    cursor: pointer;
    padding: 5px;
    transition: var(--alb-transition);
}

.alb-copy-btn:hover {
    color: var(--alb-gold);
}

.alb-promo-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.alb-discount-percent {
    font-family: var(--alb-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #25D366;
    line-height: 1;
}

.alb-discount-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--alb-white);
}

.alb-promo-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alb-promo-benefits li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alb-promo-benefits li:last-child {
    border-bottom: none;
}

/* WhatsApp Button */
.alb-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--alb-transition);
}

.alb-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.alb-floating-popup-header {
    background: linear-gradient(135deg, var(--alb-gold) 0%, var(--alb-gold-dark) 100%);
    padding: 20px;
    position: relative;
}

.alb-floating-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alb-black);
    transition: var(--alb-transition);
}

.alb-floating-popup-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.alb-floating-popup-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: var(--alb-black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.alb-floating-popup-header h3 {
    font-family: var(--alb-font-display);
    font-size: 1.5rem;
    color: var(--alb-black);
    margin-bottom: 5px;
}

.alb-floating-popup-header p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
}

.alb-floating-popup-body {
    padding: 25px;
}

.alb-floating-popup-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.alb-floating-popup-feature:last-child {
    margin-bottom: 0;
}

.alb-floating-popup-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    color: var(--alb-gold);
}

.alb-floating-popup-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.alb-floating-popup-feature p {
    font-size: 0.8rem;
    color: var(--alb-white-muted);
}

.alb-floating-popup-cta {
    padding: 0 25px 25px;
}

.alb-floating-popup-cta .alb-btn {
    width: 100%;
    justify-content: center;
}

/* Ticket Perforation Effect */
.alb-floating-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 5px,
        var(--alb-gold) 5px,
        var(--alb-gold) 10px
    );
}

.alb-ticket-tear {
    position: relative;
    height: 20px;
    background: var(--alb-black-light);
    margin: 0 -1px;
}

.alb-ticket-tear::before,
.alb-ticket-tear::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--alb-black);
    border-radius: 50%;
}

.alb-ticket-tear::before {
    left: -10px;
    border: 1px solid var(--alb-gold);
    border-left: none;
}

.alb-ticket-tear::after {
    right: -10px;
    border: 1px solid var(--alb-gold);
    border-right: none;
}

.alb-ticket-tear-line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--alb-black-medium),
        var(--alb-black-medium) 5px,
        transparent 5px,
        transparent 10px
    );
}

/* Overlay when popup is open */
.alb-floating-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--alb-transition);
}

.alb-floating-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide tab when popup is open */
.alb-floating-tab.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .alb-floating-tab-trigger {
        min-height: auto;
        font-size: 0.8rem;
        padding: 12px 10px;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        border-radius: 8px 0 0 8px;
        right: -5px;
        gap: 6px;
        flex-direction: column;
        width: auto;
        max-width: 55px;
        transform: translateX(0);
        transition: transform 0.3s ease, right 0.3s ease;
    }
    
    .alb-floating-tab-trigger:hover {
        right: 0;
    }
    
    .alb-floating-tab-trigger span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        white-space: nowrap;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .alb-floating-tab-trigger svg {
        width: 22px;
        height: 22px;
        transform: rotate(0);
    }
    
    .alb-floating-tab-trigger .alb-pulse-dot {
        top: 6px;
        right: 6px;
    }
    
    /* Mobile tab attention animation - more prominent */
    @keyframes alb-tab-attention-mobile {
        0%, 100% { right: -5px; }
        50% { right: 5px; }
    }
    
    .alb-floating-tab-trigger {
        animation: alb-tab-attention-mobile 2.5s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .alb-floating-tab-trigger:hover,
    .alb-floating-tab-trigger:active {
        animation: none;
        right: 0;
    }
    
    .alb-floating-popup {
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
    }
    
    .alb-floating-popup.active {
        transform: translateY(0);
    }
    
    /* Left popup mobile */
    .alb-floating-popup-left {
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
    }
    
    .alb-floating-popup-left.active {
        transform: translateY(0);
    }
    
    /* Left tab mobile */
    .alb-floating-tab-trigger-left {
        border-radius: 0 8px 8px 0;
        left: -5px;
        right: auto;
    }
    
    @keyframes alb-tab-attention-left-mobile {
        0%, 100% { left: -5px; }
        50% { left: 5px; }
    }
    
    .alb-floating-tab-trigger-left {
        animation: alb-tab-attention-left-mobile 2.5s ease-in-out infinite;
        animation-delay: 2s;
    }
    
    .alb-floating-tab-trigger-left:hover,
    .alb-floating-tab-trigger-left:active {
        animation: none;
        left: 0;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .alb-floating-tab-trigger {
        padding: 10px 8px;
        max-width: 50px;
        right: -3px;
    }
    
    .alb-floating-tab-trigger span {
        font-size: 0.65rem;
    }
    
    .alb-floating-tab-trigger svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   SKIN ANALYSIS BANNER (Homepage)
   ============================================ */
.alb-analysis-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
    overflow: hidden;
}

.alb-analysis-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23C9A962" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    pointer-events: none;
}

.alb-analysis-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.alb-analysis-banner-content {
    padding-right: 40px;
}

.alb-analysis-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--alb-gold);
    margin-bottom: 20px;
}

.alb-analysis-banner-badge svg {
    animation: alb-sparkle 2s ease-in-out infinite;
}

@keyframes alb-sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.alb-analysis-banner-title {
    font-family: var(--alb-font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.alb-analysis-banner-desc {
    font-size: 1rem;
    color: var(--alb-white-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.alb-analysis-banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.alb-analysis-banner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.alb-analysis-banner-feature svg {
    color: var(--alb-gold);
}

.alb-analysis-banner-visual {
    position: relative;
}

.alb-analysis-banner-card {
    position: relative;
    background: var(--alb-black-light);
    border: 1px solid var(--alb-black-medium);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}

.alb-analysis-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 169, 98, 0.1), transparent 30%);
    animation: alb-rotate-gradient 10s linear infinite;
}

@keyframes alb-rotate-gradient {
    100% { transform: rotate(360deg); }
}

.alb-analysis-banner-card-inner {
    position: relative;
    z-index: 1;
}

.alb-analysis-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--alb-gold) 0%, var(--alb-gold-dark) 100%);
    border-radius: 50%;
    color: var(--alb-black);
}

.alb-analysis-banner-card h3 {
    font-family: var(--alb-font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.alb-analysis-banner-card p {
    font-size: 0.9rem;
    color: var(--alb-white-muted);
    margin-bottom: 25px;
}

.alb-analysis-banner-steps {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.alb-analysis-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.alb-analysis-step-num {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--alb-black);
    border: 1px solid var(--alb-gold);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--alb-gold);
}

.alb-analysis-step-text {
    font-size: 0.7rem;
    color: var(--alb-white-muted);
}

/* Mobile */
@media (max-width: 992px) {
    .alb-analysis-banner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .alb-analysis-banner-content {
        padding-right: 0;
        text-align: center;
    }
    
    .alb-analysis-banner-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .alb-analysis-banner {
        padding: 60px 0;
    }
    
    .alb-analysis-banner-card {
        padding: 30px 20px;
    }
    
    .alb-analysis-banner-steps {
        flex-wrap: wrap;
    }
}
