/* 
   ==========================================================================
   BETHEL EXPRESS & IMPEX - PREMIUM DESIGN SYSTEM v2.0
   Enhanced with Rich Animations & Professional Interactions
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/* SPLASH SCREEN */
#splash {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOut 0.8s ease forwards;
    animation-delay: 3s;
}

.route {
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, #c9a24d, #e6c87a);
    position: relative;
    overflow: hidden;
}

.parcel {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #c9a24d;
    border-radius: 3px;
    top: -6px;
    animation: moveParcel 2s ease-in-out infinite;
}

.logo-splash {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    animation: reveal 1s ease forwards;
    animation-delay: 1.2s;
}

.logo-splash h1 {
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.logo-splash p {
    color: #c9a24d;
    font-size: 14px;
    margin-top: 8px;
    font-family: 'Outfit', sans-serif;
}

@keyframes moveParcel {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

@keyframes reveal {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

:root {
    /* Color Palette */
    --primary-gold: #C9A24D;
    --primary-dark: #0A0A0A;
    --accent-gold: #E6C87A;
    --text-white: #FFFFFF;
    --text-grey: #A0A0A0;
    --bg-light: #F8F8F8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Effects */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 25px rgba(201, 162, 77, 0.2);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* 
   ==========================================================================
   CORE STYLES
   ========================================================================== 
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--text-white);
    color: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
    position: relative;
}

/* 
   ==========================================================================
   ANIMATED BACKGROUND ELEMENTS
   ========================================================================== 
*/

.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* 
   ==========================================================================
   ENHANCED COMPONENTS
   ========================================================================== 
*/

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.section-tag {
    font-family: var(--font-body);
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
    animation: expandLine 1s ease forwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 40px;
    }
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

/* 
   ==========================================================================
   ENHANCED NAVIGATION
   ========================================================================== 
*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-white);
    font-weight: 700;
    position: relative;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(201, 162, 77, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* .logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(201, 162, 77, 0.5));
} */

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text .brand-tagline {
    font-size: 11px;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Legacy logo support */
.logo span {
    color: var(--primary-gold);
    position: relative;
}

/* .logo span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
} */

.logo:hover span::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active,
.nav-link:hover {
    opacity: 1;
    color: var(--primary-gold);
}

header.scrolled .logo,
header.scrolled .nav-link {
    color: var(--text-white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* 
   ==========================================================================
   HERO / PAGE BANNER - ENHANCED
   ========================================================================== 
*/

.page-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--text-white), transparent);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content .section-tag {
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.banner-content h1 {
    animation: slideInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Home Specific */
.hero-home {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--text-white), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: heroFadeIn 1s ease forwards;
    opacity: 0;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .section-tag {
    animation: heroFadeIn 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content p {
    animation: heroFadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-content>div {
    animation: heroFadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounceScroll 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes bounceScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDot {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 32px;
        opacity: 0;
    }
}

/* 
   ==========================================================================
   INTERACTIVE CARDS
   ========================================================================== 
*/

.card-interactive {
    background: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card-interactive::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.05), transparent);
    transition: left 0.6s ease;
}

.card-interactive:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-interactive:hover::before {
    transform: scaleX(1);
}

.card-interactive:hover::after {
    left: 100%;
}

/* Service Card */
.service-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary-dark);
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

/* Partner Card */
.partner-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.partner-card img {
    transition: transform 0.6s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

/* Industry Card */
.industry-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
    transition: all 0.4s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card:hover::before {
    background: linear-gradient(to top, rgba(201, 162, 77, 0.9), rgba(0, 0, 0, 0.4));
}

.industry-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-card-content {
    transform: translateY(0);
}

/* 
   ==========================================================================
   ANIMATED STATISTICS
   ========================================================================== 
*/

.stats-section {
    position: relative;
    z-index: 10;
}

.stat-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-dark);
    transition: var(--transition-bounce);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 
   ==========================================================================
   PROCESS STEPS - ANIMATED
   ========================================================================== 
*/

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    transition: var(--transition);
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(201, 162, 77, 0.3);
}

/* 
   ==========================================================================
   TIMELINE - ENHANCED
   ========================================================================== 
*/

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    width: 0%;
    transition: width 1.5s ease;
}

.timeline-item {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(201, 162, 77, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(201, 162, 77, 0.4);
}

.timeline-item:hover .timeline-dot::before {
    opacity: 1;
    inset: -12px;
}

/* 
   ==========================================================================
   TRACKING PAGE STYLES
   ========================================================================== 
*/

.tracking-card {
    background: var(--text-white);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border-radius: 12px;
}

.track-input-wrap {
    display: flex;
    gap: 0;
    border: 2px solid #eee;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 8px;
}

.track-input-wrap:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.1);
}

.track-input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    background: transparent;
}

.track-input:focus {
    outline: none;
}

.tracking-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.glass-tracking-bar {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.tracking-title-area {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    min-width: 250px;
}

.tracking-title-area i {
    font-size: 30px;
    color: var(--primary-gold);
}

.premium-input-wrap {
    flex: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.premium-input-wrap:focus-within {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.premium-track-input {
    background: transparent;
    border: none;
    padding: 20px 25px;
    color: #fff;
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 1px;
}

.premium-track-input:focus {
    outline: none;
}

.tracking-mini-res {
    background: #fff;
    padding: 40px;
    margin-top: 5px;
    display: none;
    border-top: 4px solid var(--primary-gold);
    animation: slideUp 0.5s ease;
}

/* Route Visualizer */
.route-visualizer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
}

.route-step {
    text-align: center;
    position: relative;
}

.route-step::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    z-index: 0;
}

.route-step:first-child::before {
    display: none;
}

.route-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.route-dot.completed {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.route-dot.active {
    border: 2px solid var(--primary-gold);
    background: #fff;
    color: var(--primary-gold);
    animation: pulseRoute 2s infinite;
}

.route-dot.pending {
    background: #ddd;
}

@keyframes pulseRoute {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 5px rgba(201, 162, 77, 0);
    }
}

/* 
   ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== 
*/

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-field {
    margin-bottom: 30px;
    position: relative;
}

.contact-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-field:focus-within label {
    color: var(--primary-gold);
}

.contact-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #eee;
    font-family: inherit;
    transition: var(--transition);
    background: transparent;
}

.contact-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form-card {
    background: #fff;
    padding: 50px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-radius: 12px;
}

.contact-form-card:hover {
    box-shadow: var(--shadow-hover);
}

/* FAQ Accordion */
.faq-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 30px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateX(5px);
}

/* 
   ==========================================================================
   CALCULATOR STYLES
   ========================================================================== 
*/

.calc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.calc-select,
.calc-field {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.calc-select:focus,
.calc-field:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(201, 162, 77, 0.1);
}

.calc-result-box {
    background: linear-gradient(135deg, var(--primary-dark), #1a1a1a);
    color: #fff;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.calc-result-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 77, 0.1) 0%, transparent 40%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.calc-result-box h2 {
    font-size: 48px;
    color: var(--primary-gold);
    position: relative;
    z-index: 1;
}

/* 
   ==========================================================================
   FOOTER - PREMIUM ENHANCED
   ========================================================================== 
*/

footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    padding: 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold), var(--primary-gold));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 77, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Footer Top CTA Banner */
.footer-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    padding: 60px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    animation: rotateCTA 20s linear infinite;
}

@keyframes rotateCTA {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-cta h3 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.footer-cta p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
}

.footer-cta .btn {
    background: var(--primary-dark);
    color: var(--primary-gold);
    padding: 18px 40px;
}

.footer-cta .btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Logo Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(201, 162, 77, 0.3));
    transition: transform 0.4s ease;
}

/* .footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
} */

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-white);
    line-height: 1.2;
}

.footer-logo-text span {
    color: var(--primary-gold);
}

.footer-desc {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 30px;
}

/* Certifications */
.footer-certs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(201, 162, 77, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.cert-badge i {
    margin-right: 8px;
}

/* Footer Titles */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    border-radius: 2px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-grey);
    font-size: 14px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a::before {
    display: none;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
    padding-left: 0;
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 14px;
    color: var(--text-grey);
}

.footer-contact-text strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 3px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter-section {
    margin-top: 10px;
}

.newsletter-wrap {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-wrap:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.1);
}

.newsletter-input {
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: #fff;
    flex: 1;
    outline: none;
    font-family: inherit;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border: none;
    padding: 16px 25px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

.newsletter-btn i {
    font-size: 16px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-grey);
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 30px rgba(201, 162, 77, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-grey);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-grey);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom p a {
    color: var(--text-grey);
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: var(--primary-gold);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payment span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-payment i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-payment i:hover {
    color: var(--primary-gold);
}

/* 
   ==========================================================================
   ANIMATIONS & UTILITIES - ENHANCED
   ========================================================================== 
*/

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .reveal-left {
        transform: translateX(-20px);
    }

    .reveal-right {
        transform: translateX(20px);
    }
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.pulsing-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.4);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(201, 162, 77, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decorative elements */
.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-gold) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
}

/* 
   ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== 
*/

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .timeline-container {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background-color: var(--text-white);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        box-shadow: none;
        display: flex;
    }

    .nav-links.active {
        transform: translateY(0);
        right: 0;
        /* Clear right property if any */
    }

    .nav-link {
        font-size: 18px;
        opacity: 1;
    }

    /* Typography & Layout Adjustments */
    .hero-content h1 {
        font-size: 42px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-text .brand-name {
        font-size: 16px;
    }

    .logo-text .brand-tagline {
        font-size: 10px;
    }

    /* Ensure Request Quote button is hidden in header but maybe we should add it to nav links via JS or assume user is ok */
    header .btn-primary {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo-wrap {
        justify-content: center;
    }

    .footer-certs {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links a i {
        opacity: 1;
        transform: none;
    }

    .footer-links li {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 40px;
    }

    .page-banner h1 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
}/ *   F l o a t i n g   W h a t s A p p   W i d g e t   * /  
 . w h a t s a p p - f l o a t   {  
         p o s i t i o n :   f i x e d ;  
         b o t t o m :   3 0 p x ;  
         l e f t :   3 0 p x ;  
         b a c k g r o u n d :   # 2 5 d 3 6 6 ;  
         c o l o r :   # f f f ;  
         w i d t h :   6 0 p x ;  
         h e i g h t :   6 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - s i z e :   3 0 p x ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 4 ) ;  
         z - i n d e x :   9 9 9 9 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . w h a t s a p p - f l o a t : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 1 )   r o t a t e ( 1 0 d e g ) ;  
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 6 ) ;  
         c o l o r :   # f f f ;  
 }  
  
 . w h a t s a p p - f l o a t : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   i n h e r i t ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         z - i n d e x :   - 1 ;  
         a n i m a t i o n :   p u l s e - g r e e n   2 s   i n f i n i t e ;  
 }  
  
 @ k e y f r a m e s   p u l s e - g r e e n   {  
         0 %   {  
                 t r a n s f o r m :   s c a l e ( 1 ) ;  
                 o p a c i t y :   0 . 8 ;  
         }  
  
         1 0 0 %   {  
                 t r a n s f o r m :   s c a l e ( 1 . 6 ) ;  
                 o p a c i t y :   0 ;  
         }  
 }  
  
 . w h a t s a p p - b u b b l e   {  
         p o s i t i o n :   f i x e d ;  
         b o t t o m :   1 0 0 p x ;  
         l e f t :   3 0 p x ;  
         b a c k g r o u n d :   # f f f ;  
         p a d d i n g :   1 5 p x   2 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         z - i n d e x :   9 9 9 8 ;  
         m a x - w i d t h :   2 6 0 p x ;  
         o p a c i t y :   0 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ;  
         a n i m a t i o n :   b u b b l e U p   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 )   2 s   f o r w a r d s ;  
         b o r d e r - l e f t :   5 p x   s o l i d   # 2 5 d 3 6 6 ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
         g a p :   1 2 p x ;  
         p o i n t e r - e v e n t s :   n o n e ;  
         / *   A l l o w   c l i c k i n g   t h r o u g h   i f   h i d d e n ,   b u t   o p a c i t y   h a n d l e s   v i s   * /  
 }  
  
 . w h a t s a p p - b u b b l e . v i s i b l e   {  
         p o i n t e r - e v e n t s :   a u t o ;  
 }  
  
 @ k e y f r a m e s   b u b b l e U p   {  
         t o   {  
                 o p a c i t y :   1 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         }  
 }  
  
 . w h a t s a p p - b u b b l e - c o n t e n t   h 4   {  
         f o n t - s i z e :   1 4 p x ;  
         m a r g i n - b o t t o m :   4 p x ;  
         c o l o r :   # 3 3 3 ;  
 }  
  
 . w h a t s a p p - b u b b l e - c o n t e n t   p   {  
         f o n t - s i z e :   1 2 p x ;  
         c o l o r :   # 6 6 6 ;  
         m a r g i n :   0 ;  
         l i n e - h e i g h t :   1 . 4 ;  
 }  
  
 . c l o s e - b u b b l e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   8 p x ;  
         r i g h t :   8 p x ;  
         c o l o r :   # a a a ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - s i z e :   1 2 p x ;  
         p a d d i n g :   2 p x ;  
 }  
  
 . c l o s e - b u b b l e : h o v e r   {  
         c o l o r :   # 3 3 3 ;  
 }  
 