/* BuildBase Custom Styles */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #07FF96;
    --text-color: #1f2937;
    --light-bg: #f8fafc;
    --dark-bg: #1e293b;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #07FF96 0%, #00D084 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 0;
    transition: padding-top 0.3s ease;
}

body.banner-hidden {
    padding-top: 0;
}

/* Top Banner Styles */
.top-banner {
    background: #1e293b;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.top-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-banner-left {
    display: flex;
    gap: 20px;
}

.top-banner-right {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.top-banner-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-banner-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 80px;
}

.main-header.scrolled {
    top: 0;
}

.navbar {
    min-height: 80px;
    padding: 1rem 0;
}

.navbar-brand {
    margin-right: 3rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

#logo h2 {
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Navbar Alignment */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1rem 1.25rem;
    font-weight: 500;
}

/* Demo Button Alignment */
.demo-btn {
    display: flex !important;
    align-items: center;
    height: 50px;
    margin-left: 1rem;
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-nav {
        align-items: flex-start;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }
    
    /* Mobile dropdown styles - simple and clean */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        background-color: #f8f9fa !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin-left: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        display: none !important;
        top: auto !important;
        bottom: auto !important;
        inset: auto !important;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 2rem;
        border-bottom: 1px solid #e9ecef;
        color: #495057;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #e9ecef;
        color: var(--primary-color);
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Ensure dropdown appears underneath parent on mobile */
    .navbar-nav .dropdown {
        position: relative !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Force mobile dropdown to be full width and positioned correctly */
    .navbar-nav .nav-item.dropdown {
        width: 100% !important;
        display: block !important;
    }
    
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    /* Mobile dropdown toggle styling */
    .navbar-nav .dropdown-toggle::after {
        margin-left: 0.5rem;
        vertical-align: 0.1em;
    }
    
    /* Ensure proper mobile dropdown layout */
    .navbar-nav .dropdown-menu {
        margin-top: 0;
        border-top: 1px solid #e9ecef;
        background-color: #f8f9fa;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 3rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Additional mobile dropdown overrides */
    .navbar-nav .dropdown-menu[data-bs-popper] {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    /* Ensure dropdown items are properly stacked */
    .navbar-nav .dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }
    
    .navbar-nav .dropdown-menu li a {
        display: block !important;
        width: 100% !important;
    }
    
    /* Complete override for Bootstrap dropdown positioning on mobile */
    @media (max-width: 991.98px) {
        .navbar-nav .dropdown-menu {
            position: static !important;
            float: none !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            left: 0 !important;
            right: 0 !important;
            top: auto !important;
            bottom: auto !important;
            transform: none !important;
            inset: auto !important;
        }
        
        .navbar-nav .dropdown-menu.show {
            display: block !important;
            position: static !important;
        }
        
        .navbar-nav .nav-item.dropdown {
            position: relative !important;
            width: 100% !important;
        }
    }
    
    .demo-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.parallax {
    position: relative;
    overflow: hidden;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.parallax .container {
    position: relative;
    z-index: 2;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* Button Styles */
.btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
    background: #F7F7F7;
}

.benefits-section {
    padding-top: 120px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.nott {
    font-weight: 700;
}

/* Footer */
#footer {
    background-color: #F7F7F7 !important;
}

/* Responsive */
/* Fix for small screen heights - add margin to hero section row */
@media (max-height: 900px) {
    .hero-section .row {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .parallax {
        height: 500px !important;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Go to Top Button */
#gotoTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

#gotoTop.visible {
    opacity: 1;
    visibility: visible;
}

#gotoTop:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* List Styles */
.list-unstyled li {
    padding: 5px 0;
}

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

/* Accent Color Elements */
.accent-text {
    color: var(--accent-color);
}

.accent-bg {
    background-color: var(--accent-color);
}

.accent-border {
    border-color: var(--accent-color);
}

.btn-accent {
    background: var(--gradient-accent);
    border: none;
    color: white;
    font-weight: 500;
}

.btn-accent:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 255, 150, 0.3);
    color: white;
}

/* Footer Styles */
#footer {
    background-color: #F7F7F7 !important;
    border-top: 1px solid #e9ecef;
}

#footer .text-muted {
    color: #6c757d !important;
}

#footer .text-dark {
    color: #212529 !important;
}

#footer a.text-muted:hover {
    color: var(--accent-color) !important;
}

/* CSS Icon Styles */
.css-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: linear-gradient(135deg, #07FF96 0%, #00D084 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.css-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.feature-card:hover .css-icon {
    transform: scale(1.1);
}

/* Feature card links */
.feature-card-link {
    text-decoration: none;
    color: inherit;
}

.feature-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.feature-card-link .card {
    transition: all 0.3s ease;
}

.feature-card-link:hover .card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* BuildBase Specific Styles */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('resources/campaign-creators-e6n7uoEnYbA-unsplash-1-e1716187872894.jpg') top center/cover;
    opacity: 0.2;
    filter: blur(2px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Image Overlap Section */
.image-overlap-section {
    position: relative;
    z-index: 3;
    margin-top: -15vh;
    padding-top: 0;
    background: #F7F7F7;
    height: 15vh;
}

.overlap-image-container {
    position: relative;
    z-index: 4;
    height: auto;
    display: flex;
    align-items: center;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.contact-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: blur(2px);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 255, 150, 0.2);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.overlap-image-container {
    justify-content: flex-end;
    min-height: 472px;
}

.image-overlap-section .col-lg-8 {
    height: auto;
    min-height: 0;
}

.overlap-image {
    background: transparent;
    width: 480px;
    height: 472px;
    max-width: 100%;
    object-fit: contain;
    transform: translateY(-15vh);
    border: none;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 1200px) {
    .overlap-image {
        width: 400px;
        height: 393px;
    }
}

@media (max-width: 767px) {
    .image-overlap-section {
        margin-top: -8vh;
        padding-top: 8vh;
        background: transparent;
        height: 15vh;
    }
    
    .overlap-image-container {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 302px;
    }
    
    .overlap-image {
        margin: 0;
        max-width: 307px;
        width: 307px;
        height: 302px;
        transform: translateY(-8vh);
    }
    
    #features {
        padding-top: 100px;
    }
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon img {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.cta-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #07FF96 100%);
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
}

/* Demo Hero Section */
.demo-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.demo-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: blur(2px);
}

.demo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 255, 150, 0.2);
}

.demo-hero-content {
    position: relative;
    z-index: 2;
}

/* Demo Form Styling */
.demo-form-card {
    background-color: #14253C !important;
}

.demo-form-card .form-label {
    color: white !important;
    font-weight: 500;
}

.demo-form-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.demo-form-card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(7, 255, 150, 0.25);
    color: white;
}

.demo-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.demo-form-card .invalid-feedback {
    color: #ff6b6b;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit-item .badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Pricing Table Styles */
.pricing-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: #F7F7F7;
}

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

.pricing-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: blur(2px);
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 255, 150, 0.15) 0%, rgba(0, 208, 132, 0.1) 100%);
    backdrop-filter: blur(2px);
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
}

.pricing-table-section {
    padding: 80px 0;
    background: #F7F7F7;
}

.pricing-table-wrapper {
    background: #14253C;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 40px 0;
}

.pricing-table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table thead th {
    background: #14253C;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table .package-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 20px;
    border: none;
    vertical-align: middle;
    background: #14253C;
    color: white;
}

.pricing-table .feature-name {
    font-weight: 600;
    color: white;
    background: #14253C;
    border-left: 4px solid var(--accent-color);
}

.pricing-table .price-cell {
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.pricing-table .check-cell {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    background: #14253C;
}

.pricing-table .base-cost-row {
    background: #14253C;
    color: white;
}

.pricing-table .base-cost-row td {
    padding: 20px;
    font-weight: 600;
    background: #14253C;
}

.pricing-table .base-cost-label {
    font-weight: 600;
    color: white;
    background: #14253C;
}

.pricing-table .base-cost {
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    background: #14253C;
}

.pricing-table .total-row {
    background: #14253C;
    color: white;
}

.pricing-table .total-row td {
    padding: 25px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.pricing-table .total-row td:first-child {
    text-align: left;
}

.pricing-table .yearly-row {
    background: #14253C;
    color: white;
}

.pricing-table .yearly-row td {
    padding: 20px;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
}

.pricing-table .yearly-row td:first-child {
    text-align: left;
}

.pricing-note {
    padding: 20px;
    background: #14253C;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.8);
}

.individual-modules {
    padding: 80px 0;
    background: #F7F7F7;
}

.individual-modules .card {
    border-radius: 15px;
    border: none;
}

.individual-modules .card-body {
    background: #14253C;
    border-radius: 15px;
    color: white;
}

.individual-modules .card-body h3 {
    color: white;
}

.individual-modules .card-body .fw-medium {
    color: white;
}

.individual-modules .card-body .text-primary {
    color: var(--accent-color) !important;
}

.individual-modules .card-body .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .pricing-hero {
        padding: 60px 0;
    }
    
    .pricing-table-section {
        padding: 60px 0;
    }
    
    .pricing-table thead th {
        padding: 20px 10px;
        font-size: 0.9rem;
    }
    
    .pricing-table .package-name {
        font-size: 1rem;
    }
    
    .pricing-table tbody td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .pricing-table .price-cell {
        font-size: 1rem;
    }
    
    .pricing-table .check-cell {
        font-size: 1.2rem;
    }
    
    .individual-modules {
        padding: 60px 0;
    }
    
    /* Mobile button spacing fixes */
    .benefits-section .btn-accent {
        margin-bottom: 2rem;
    }
    
    .section.bg-light .d-flex.gap-3 {
        margin-bottom: 2rem;
    }
    
    /* Mobile spacing fixes for personeelsbeheer page */
    .py-5 .col-lg-6:first-child {
        margin-top: 2rem;
    }
    
    .py-5 .btn-primary {
        margin-bottom: 2rem;
    }
    
    /* Mobile spacing above specific headings */
    .py-5 .col-lg-6 h2.display-5 {
        margin-top: 1.5rem;
    }
    
    /* Mobile spacing fixes for facturatie page */
    .section .btn-accent {
        margin-bottom: 2rem;
    }
    
    /* Hide specific duplicate image on mobile for facturatie page */
    .section.bg-light .col-lg-6 img[src*="image-1.png"] {
        display: none;
    }
    
    /* Mobile spacing fixes for ERP pages */
    .section.bg-light .col-lg-6 h2.display-5 {
        margin-top: 2rem;
    }
    
    .hero-section .d-flex.gap-3 {
        margin-bottom: 2rem;
    }
    
    /* Mobile spacing adjustments for timebase page */
    .section.bg-light .col-lg-6 h2.display-5 {
        margin-top: 0.5rem;
    }
    
    .section:not(.bg-light) .col-lg-6 h2.display-5 {
        margin-top: 2.5rem;
    }
}

/* Social Media Bubbles */
.social-media-bubbles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
}

.social-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-bubble svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: fill 0.3s ease;
}

.social-bubble.linkedin {
    background-color: #0077b5;
    border-color: #0077b5;
}

.social-bubble.instagram {
    background-color: #e4405f;
    border-color: #e4405f;
}

.social-bubble.facebook {
    background-color: #1877f2;
    border-color: #1877f2;
}

.social-bubble.linkedin:hover {
    background-color: #005885;
    border-color: #005885;
}

.social-bubble.instagram:hover {
    background-color: #d62976;
    border-color: #d62976;
}

.social-bubble.facebook:hover {
    background-color: #166fe5;
    border-color: #166fe5;
}

/* Mobile responsive adjustments for social bubbles */
@media (max-width: 768px) {
    .social-media-bubbles {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .social-bubble {
        width: 45px;
        height: 45px;
    }
    
    .social-bubble svg {
        width: 20px;
        height: 20px;
    }
}
