/* =====================================================
   BESHINE BRAIDS - Custom Stylesheet
   Colors: #6F0168 (Purple), #EFA124 (Gold), #171718 (Dark)
   ===================================================== */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---- CSS Variables ---- */
:root {
    --primary: #6F0168;
    --primary-light: #8E0185;
    --primary-dark: #4A0146;
    --accent: #EFA124;
    --accent-light: #F5B94D;
    --accent-dark: #D08A1A;
    --dark: #171718;
    --dark-lighter: #222223;
    --dark-card: #1E1E1F;
    --text-light: #F5F0F5;
    --text-muted: #B8A8B8;
    --white: #FFFFFF;
    --gray-100: #F8F6F8;
    --gray-200: #EDE8ED;
    --gray-300: #D4CDD4;
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(111, 1, 104, 0.08);
    --shadow: 0 4px 20px rgba(111, 1, 104, 0.12);
    --shadow-lg: 0 8px 40px rgba(111, 1, 104, 0.18);
    --shadow-gold: 0 4px 20px rgba(239, 161, 36, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Utility ---- */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-elegant {
    font-family: var(--font-elegant);
    font-style: italic;
}

.bg-dark-custom {
    background-color: var(--dark) !important;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2 .highlight {
    color: var(--primary);
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 15px auto;
    border-radius: 3px;
}

/* ---- Dark Section Headers ---- */
.dark-section .section-header h2 {
    color: var(--white);
}

.dark-section .section-header p {
    color: var(--text-muted);
}

/* ---- Buttons ---- */
.btn-beshine {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-beshine::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;
}

.btn-beshine:hover::before {
    left: 100%;
}

.btn-primary-beshine {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(111, 1, 104, 0.3);
}

.btn-primary-beshine:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 1, 104, 0.4);
    color: var(--white);
}

.btn-accent-beshine {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-accent-beshine:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 161, 36, 0.4);
    color: var(--dark);
}

.btn-outline-beshine {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-outline-beshine:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar-beshine {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1050;
    background: transparent;
}

.navbar-beshine.scrolled {
    background: rgba(23, 23, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-beshine .navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.navbar-beshine .navbar-brand img {
    height: 85px;
    transition: var(--transition);
    display: block;
}

.navbar-beshine.scrolled .navbar-brand img {
    height: 68px;
}

.navbar-beshine .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-beshine .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-beshine .nav-link:hover::after,
.navbar-beshine .nav-link.active::after {
    width: 60%;
}

.navbar-beshine .nav-link:hover {
    color: var(--accent) !important;
}

.navbar-beshine .nav-link.active {
    color: var(--accent) !important;
}

.navbar-beshine .btn-book-now {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark) !important;
    border-radius: 50px;
    padding: 10px 24px !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-beshine .btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.navbar-beshine .btn-book-now::after {
    display: none;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 28px;
    height: 2px;
    background-color: var(--accent);
    display: block;
    position: relative;
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--accent);
    left: 0;
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(23, 23, 24, 0.92) 0%,
            rgba(111, 1, 104, 0.6) 50%,
            rgba(23, 23, 24, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(239, 161, 36, 0.15);
    border: 1px solid rgba(239, 161, 36, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .accent-text {
    color: var(--accent);
    display: block;
}

.hero-title .elegant-text {
    font-family: var(--font-elegant);
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111, 1, 104, 0.15), transparent);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-floating-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 161, 36, 0.1), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.hero-floating-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(111, 1, 104, 0.1), transparent);
    top: 40%;
    left: -3%;
    animation-delay: 4s;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-slow);
}

.about-image-container:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(23, 23, 24, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 25px;
}

.about-stat h4 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0;
}

.about-stat span {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #444;
    font-weight: 500;
}

.about-highlights li i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--gray-100);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--white), var(--gray-100));
    z-index: 0;
}

.service-category-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(111, 1, 104, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category-title i {
    color: var(--accent);
}

.price-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0;
    transition: var(--transition);
    border: 1px solid rgba(111, 1, 104, 0.08);
    overflow: hidden;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(111, 1, 104, 0.15);
}

.price-card-img {
    height: 200px;
    overflow: hidden;
}

.price-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.price-card:hover .price-card-img img {
    transform: scale(1.08);
}

.price-card-body {
    padding: 25px;
}

.price-card-body h5 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.price-card-body .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-card-body .price small {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Price Table Style */
.price-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(111, 1, 104, 0.08);
}

.price-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.price-table-row:last-child {
    border-bottom: none;
}

.price-table-row:hover {
    background: rgba(111, 1, 104, 0.03);
}

.price-table-row .service-name {
    font-weight: 500;
    color: var(--dark);
}

.price-table-row .service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    white-space: nowrap;
}

/* ===== HOW WE WORK SECTION ===== */
.how-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 1, 104, 0.15), transparent);
    border-radius: 50%;
}

.step-card {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(111, 1, 104, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(239, 161, 36, 0.1);
    border: 2px solid rgba(239, 161, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: rgba(239, 161, 36, 0.15);
    border-color: rgba(239, 161, 36, 0.4);
    transform: scale(1.05);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.step-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 55px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--white);
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(111, 1, 104, 0.15);
    transform: translateY(-3px);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: rgba(111, 1, 104, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author .info h6 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-author .info span {
    font-size: 0.8rem;
    color: #888;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--gray-100);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(111, 1, 104, 0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 161, 36, 0.15), transparent);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-section {
    background: var(--white);
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #888;
}

.blog-card-meta .category {
    background: rgba(111, 1, 104, 0.08);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card-body h5 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h5 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    color: #666;
    font-size: 0.9rem;
    flex-grow: 1;
}

.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.blog-card .read-more i {
    transition: var(--transition);
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    width: 18px;
    text-align: center;
}

.footer-contact li span {
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px 0 0 50px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 0 50px 50px 0;
    color: var(--dark);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-fab .tooltip-text {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-fab:hover .tooltip-text {
    opacity: 1;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: var(--dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 1, 104, 0.3), transparent);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--accent);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted);
}

/* ===== POLICIES SECTION ===== */
.policy-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}

.policy-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(111, 1, 104, 0.15);
    transform: translateY(-3px);
}

.policy-card .icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(111, 1, 104, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.policy-card .icon-wrap i {
    font-size: 1.3rem;
    color: var(--primary);
}

.policy-card h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.policy-card p,
.policy-card ul li {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
}

.policy-card ul {
    padding-left: 0;
    list-style: none;
}

.policy-card ul li {
    padding: 4px 0;
    position: relative;
    padding-left: 18px;
}

.policy-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: var(--dark);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(111, 1, 104, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--white);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-control {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(111, 1, 104, 0.1);
    background: var(--white);
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
}

/* ===== BLOG PAGE ===== */
.blog-page-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.blog-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-sidebar .widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
}

.blog-sidebar .widget h5 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
    color: var(--dark);
}

.blog-sidebar .search-form {
    display: flex;
    gap: 0;
}

.blog-sidebar .search-form input {
    flex: 1;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    padding: 10px 15px;
    font-size: 0.9rem;
    outline: none;
}

.blog-sidebar .search-form input:focus {
    border-color: var(--primary);
}

.blog-sidebar .search-form button {
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.blog-sidebar .category-list {
    list-style: none;
    padding: 0;
}

.blog-sidebar .category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-sidebar .category-list li:last-child a {
    border-bottom: none;
}

.blog-sidebar .category-list li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.blog-sidebar .category-list li a .count {
    background: rgba(111, 1, 104, 0.08);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Blog Single Post */
.blog-single .post-header {
    margin-bottom: 30px;
}

.blog-single .post-header .post-category {
    display: inline-block;
    background: rgba(111, 1, 104, 0.08);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-single .post-header h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-single .post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-single .post-meta i {
    color: var(--accent);
    margin-right: 5px;
}

.blog-single .post-featured-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 35px;
    max-height: 500px;
}

.blog-single .post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single .post-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.blog-single .post-content h2,
.blog-single .post-content h3,
.blog-single .post-content h4 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-single .post-content p {
    margin-bottom: 18px;
}

.blog-single .post-content img {
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.blog-single .post-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    margin: 25px 0;
    background: var(--gray-100);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
    color: #555;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.blog-cta h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .step-connector {
        display: none;
    }

    .about-image-container img {
        height: 350px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-stats {
        display: none;
    }

    .about-image-accent {
        display: none;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .blog-single .post-header h1 {
        font-size: 1.6rem;
    }

    .blog-cta {
        padding: 30px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .whatsapp-fab {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .whatsapp-fab .tooltip-text {
        display: none;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .navbar-beshine .navbar-collapse {
        background: rgba(23, 23, 24, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        margin-top: 10px;
    }

    .price-card-img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-beshine {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }
}

/* ===== ADMIN STYLES ===== */
.admin-sidebar {
    background: var(--dark);
    min-height: 100vh;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    z-index: 1040;
}

.admin-sidebar .sidebar-brand {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar .sidebar-brand img {
    height: 40px;
}

.admin-sidebar .nav-link {
    color: var(--text-muted) !important;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent) !important;
    border-left-color: var(--accent);
}

.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

.admin-main {
    margin-left: 250px;
    padding: 30px;
    min-height: 100vh;
    background: var(--gray-100);
}

.admin-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.admin-stat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.admin-stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.admin-stat-card .stat-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.admin-stat-card .stat-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--dark);
}

.admin-stat-card .stat-info span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    position: relative;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111, 1, 104, 0.2), transparent);
    border-radius: 50%;
}

.login-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.login-card h2 {
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.login-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
}

.login-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239, 161, 36, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.login-card label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    color: var(--white);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(111, 1, 104, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== ALERT CUSTOM ===== */
.alert-beshine {
    border-radius: var(--border-radius-sm);
    padding: 14px 20px;
    border: none;
    font-size: 0.9rem;
}

.alert-beshine.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-beshine.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

/* ===== HERO CONTENT PADDING FIX ===== */
.hero-content .container {
    padding-left: 24px;
    padding-right: 24px;
}

.hero-content .col-lg-7 {
    padding-left: 20px;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content .col-lg-7 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== TYPEWRITER CURSOR ===== */
.typewriter-cursor {
    color: var(--accent);
    font-style: italic;
    font-family: var(--font-elegant);
    font-weight: 400;
    animation: blink-cursor 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ===== BOOKING MODAL ===== */
.booking-modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 24px 30px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.booking-modal-header .modal-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin: 0;
}

.booking-modal-body {
    padding: 30px;
    background: var(--white);
}

.booking-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.input-group-booking {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-booking>i {
    position: absolute;
    left: 14px;
    color: var(--primary);
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
}

.booking-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--dark);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.booking-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(111, 1, 104, 0.08);
}

.booking-note {
    background: rgba(239, 161, 36, 0.08);
    border: 1px solid rgba(239, 161, 36, 0.25);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #6b5a00;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.booking-note i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: #dc3545;
    font-size: 0.88rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
}

/* Booking Success Step */
.booking-success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-actions .btn-beshine {
    text-align: center;
    justify-content: center;
}

/* ---- Contact FABs ---- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-fab, .call-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.whatsapp-fab { background: #25D366; }
.call-fab { background: var(--accent); }

.whatsapp-fab:hover, .call-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fab-container .tooltip-text {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(23, 23, 24, 0.9);
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fab-container a:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}