/*--------------------------------------------------------------
# 0. Custom Fonts (Z14Irrawaddy & Pyidaungsu)
--------------------------------------------------------------*/
@font-face {
    font-family: 'Z14Irrawaddy';
    src: url('./Fonts/Z14Irrawaddy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

@font-face {
    font-family: 'Pyidaungsu';
    src: url('./Fonts/Pyidaungsu_Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

/*--------------------------------------------------------------
# 1. Root Variables (Custom Properties) - Refined Palette
--------------------------------------------------------------*/
:root {
    /* Colors - More vibrant and harmonious */
    --primary-color: #3667E3;   /* A slightly brighter, more engaging blue */
    --secondary-color: #007BFF; /* A classic, slightly darker blue for contrast */
    --accent-color: #FFC107;    /* Vibrant Amber - excellent for CTAs */
    --dark-color: #212529;      /* Deeper black for strong contrast */
    --gray-color: #6C757D;      /* Slightly darker gray for body text */
    --light-gray-color: #F8F9FA; /* Off-white background, soft and clean */
    --white-color: #FFFFFF;     /* Pure white */
    --border-color: #E0E0E0;    /* Light border for subtle separation */
    --success-color: #28A745;   /* Green for success messages */
    --error-color: #DC3545;     /* Red for error messages */

    /* Hero Specific Colors */
    --hero-bg-start: #3667E3; /* Darker blue */
    --hero-bg-end: #007BFF; /* Lighter blue */
    --hero-text-color: #FFFFFF;

    /* Typography */
    --body-font: 'Pyidaungsu', sans-serif;
    --heading-font: 'Z14Irrawaddy', 'Pyidaungsu', sans-serif;
    --nav-font: 'Z14Irrawaddy', 'Pyidaungsu', sans-serif; /* Specific font for nav */

    --font-size-base: 1rem;     /* 16px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-md: 1.125rem;   /* 18px */
    --font-size-lg: 1.25rem;    /* 20px */
    --font-size-xl: 1.5rem;     /* 24px */
    --font-size-nav: 1.05rem;   /* Slightly larger nav font */

    /* Spacing - Consistent and proportionate */
    --spacing-xs: 0.5rem;       /* 8px */
    --spacing-sm: 1rem;         /* 16px */
    --spacing-md: 1.5rem;       /* 24px */
    --spacing-lg: 3rem;         /* 48px */
    --spacing-xl: 5rem;         /* 80px */
    --section-padding: var(--spacing-xl) 0;

    /* Shadows - More subtle and modern */
    --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --border-radius: 0.5rem; /* Slightly more rounded */
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;

    /* RGB values for rgba() */
    --primary-color-rgb: 54, 103, 227; /* RGB values for #3667E3 */
    --secondary-color-rgb: 0, 123, 255; /* RGB values for #007BFF */
    --accent-color-rgb: 255, 193, 7; /* RGB values for #FFC107 */
    --dark-color-rgb: 33, 37, 41; /* RGB values for #212529 */
    --success-color-rgb: 40, 167, 69; /* RGB values for #28A745 */
    --error-color-rgb: 220, 53, 69; /* RGB values for #DC3545 */
}

/*--------------------------------------------------------------
# 2. General Body & Typography Styles
--------------------------------------------------------------*/
body {
    font-family: var(--body-font);
    line-height: 1.7; /* Increased line-height for better readability */
    color: var(--gray-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    scroll-behavior: smooth; /* Smooth scroll for anchor links */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md); /* Consistent margin for headings */
    line-height: 1.2; /* Tighter line-height for headings */
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4rem); /* More impactful responsive font size */
    font-weight: 700;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
}

p {
    font-size: var(--font-size-lg); /* Larger base paragraph font */
    line-height: 1.8; /* Increased line-height for better readability */
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out; /* Smoother transitions for all links */
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

strong {
    color: var(--dark-color); /* Make strong text stand out more */
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-dark { color: var(--dark-color) !important; }
.text-muted { color: var(--gray-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--error-color) !important; }

.section-title {
    position: relative;
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-lg); /* More space after title */
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px; /* Underline effect for section titles */
    height: 4px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Section Padding */
section {
    padding: var(--section-padding); /* Consistent section padding */
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

/*--------------------------------------------------------------
# 3. Buttons & Forms - More distinct and interactive
--------------------------------------------------------------*/
.btn {
    font-family: var(--body-font);
    font-weight: 600;
    border-radius: var(--border-radius-lg); /* More rounded buttons */
    padding: 0.85rem 2rem; /* Larger padding for easier clicking */
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    font-size: var(--font-size-lg);
}

.btn-primary.custom-btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--box-shadow-sm); /* Subtle shadow by default */
}

.btn-primary.custom-btn-primary:hover,
.btn-primary.custom-btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px); /* More pronounced lift */
    box-shadow: var(--box-shadow-md); /* Stronger shadow on hover */
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: inset 0 0 0 0 var(--primary-color); /* Initial state for fill effect */
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: inset 0 0 0 100px var(--primary-color); /* Fill effect on hover */
}

.form-control {
    border-radius: var(--border-radius);
    padding: 0.8rem 1.1rem; /* Slightly larger form inputs */
    border: 1px solid var(--border-color); /* Defined border color */
    font-size: var(--font-size-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25); /* Primary color with alpha */
    outline: none; /* Remove default outline */
}

.message {
    font-weight: 500;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-top: var(--spacing-sm);
    border: 1px solid transparent; /* Ensure consistent border */
}
.message.text-info {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-color: rgba(var(--primary-color-rgb), 0.3);
}
.message.text-success {
    color: var(--success-color);
    background-color: rgba(var(--success-color-rgb), 0.1);
    border-color: rgba(var(--success-color-rgb), 0.3);
}
.message.text-danger {
    color: var(--error-color);
    background-color: rgba(var(--error-color-rgb), 0.1);
    border-color: rgba(var(--error-color-rgb), 0.3);
}


/*--------------------------------------------------------------
# 4. Header / Navbar - Clean and prominent
--------------------------------------------------------------*/
.header {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow-sm); /* Subtle shadow for header */
    z-index: 1030;
    padding: 0.75rem 0; /* Slightly more padding for the navbar */
}

.navbar-brand img {
    max-height: 50px; /* Slightly larger logo */
    transition: transform 0.3s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: var(--nav-font); /* Apply specific nav font */
    font-weight: 600; /* Bolder nav links */
    color: var(--dark-color) !important;
    padding: 0.7rem var(--spacing-sm); /* Adjusted padding */
    position: relative;
    font-size: var(--font-size-nav); /* Use specific nav font size */
    transition: all 0.3s ease-in-out; /* Smooth transition for color and underline */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Thicker underline */
    background-color: var(--primary-color);
    bottom: 0; /* Align to bottom */
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
    border-radius: 1.5px;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 2 * var(--spacing-sm));
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important; /* Active link color */
}

.navbar-nav .nav-link.active::after {
    width: calc(100% - 2 * var(--spacing-sm)); /* Active link underline */
    background-color: var(--primary-color); /* Ensure active underline is primary color */
}

.navbar-toggler {
    border-color: var(--primary-color);
    padding: 0.4rem 0.75rem; /* Smaller toggler button */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233667E3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
# 5. Hero Section - More impactful and engaging
--------------------------------------------------------------*/
.hero {
    /* Using linear-gradient instead of image */
    background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
    min-height: 85vh;
    padding-top: calc(var(--spacing-xl) + 80px); /* Adjust for fixed header */
    padding-bottom: var(--spacing-xl);
    position: relative;
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Vertically center content */
    overflow: hidden;
    color: var(--hero-text-color); /* Ensure text is white for contrast */
}

.hero::before {
    content: none; /* Remove overlay as it's not needed with gradient */
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center; /* Center text by default for better responsiveness */
}

.hero h1 {
    color: var(--hero-text-color);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4); /* Slightly lighter shadow for lighter background */
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.9); /* Slightly off-white for body text */
    max-width: 900px; /* Wider text for larger screens */
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size-lg);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero .btn {
    margin-top: var(--spacing-md);
}

/* Responsive adjustments for Hero */
@media (max-width: 992px) {
    .hero {
        min-height: 75vh;
        padding-top: calc(var(--spacing-lg) + 70px);
        padding-bottom: var(--spacing-lg);
    }
    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    .hero p.lead {
        font-size: var(--font-size-base);
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 65vh;
    }
}

/*--------------------------------------------------------------
# 5.1. Hero Section for Subpages (New Style)
--------------------------------------------------------------*/
.hero-subpage {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh; /* Shorter than main hero, but still impactful */
    padding-top: calc(var(--spacing-xl) + 80px); /* Adjust for fixed header */
    padding-bottom: var(--spacing-lg); /* Slightly more padding at bottom */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white-color);
}

.hero-subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--dark-color-rgb), 0.6); /* Darker overlay for better text contrast */
    z-index: 1;
}

.hero-subpage .container {
    position: relative;
    z-index: 2;
    text-align: center; /* Center text */
}

.hero-subpage h1 {
    color: var(--white-color);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    margin-bottom: var(--spacing-lg); /* Increased margin for more space below h1 */
    line-height: 1.1;
}

.hero-subpage p.lead {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    line-height: 1.6; /* Adjusted line-height for readability in hero lead */
}

/* Custom button for subpage hero to differentiate */
.custom-btn-secondary {
    background-color: var(--white-color);
    border-color: var(--white-color);
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.custom-btn-secondary:hover {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

/*--------------------------------------------------------------
# 6. Our Services Section - Clean cards with clear icons
--------------------------------------------------------------*/
.our-services .card {
    border: 1px solid var(--border-color); /* Subtle border for definition */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out; /* Slower, smoother transition */
    padding: var(--spacing-lg) var(--spacing-md); /* More internal padding */
    text-align: center;
}

.our-services .card:hover {
    transform: translateY(-8px); /* More significant lift effect */
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color); /* Highlight border on hover */
}

.our-services .icon-wrapper {
    margin-bottom: var(--spacing-md);
    display: inline-flex; /* Center icon */
    align-items: center;
    justify-content: center;
    width: 90px; /* Larger circular background for icons */
    height: 90px;
    background-color: rgba(var(--primary-color-rgb), 0.08); /* Light primary color background */
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.our-services .card:hover .icon-wrapper {
    background-color: var(--primary-color); /* Solid primary on hover */
}

.our-services .icon-wrapper img {
    max-width: 60px; /* Adjusted icon size within wrapper */
    height: auto;
    filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(6000%) hue-rotate(200deg) brightness(95%) contrast(100%); /* Blue tint initially */
    transition: filter 0.4s ease-in-out;
}

.our-services .card:hover .icon-wrapper img {
    filter: brightness(0) invert(1); /* White on hover */
}

.our-services .card h3 {
    margin-bottom: var(--spacing-xs); /* Tighter heading for card title */
    font-size: 1.5rem; /* Larger card title */
}

.our-services .card p {
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.custom-link-color {
    color: var(--primary-color);
    font-weight: 600;
}
.custom-link-color:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/*--------------------------------------------------------------
# 6.1. Service Feature Cards (New Style for "What We Offer")
--------------------------------------------------------------*/
.service-feature-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    background-color: var(--white-color);
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.service-feature-card .icon-wrapper {
    margin-bottom: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: rgba(var(--primary-color-rgb), 0.08);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.service-feature-card:hover .icon-wrapper {
    background-color: var(--primary-color);
}

.service-feature-card .icon-wrapper .fas {
    font-size: 3.5rem; /* Larger icons for feature cards */
    color: var(--primary-color);
    transition: color 0.4s ease-in-out;
}

.service-feature-card:hover .icon-wrapper .fas {
    color: var(--white-color);
}

/*--------------------------------------------------------------
# 7. About Us Section - Visually engaging with clear points
--------------------------------------------------------------*/
.about-us {
    background-color: var(--light-gray-color);
}

.about-us .list-unstyled li {
    margin-bottom: var(--spacing-md);
    display: flex; /* Use flex for consistent alignment */
    align-items: flex-start;
}

.about-us .list-unstyled img {
    flex-shrink: 0;
    margin-right: var(--spacing-md); /* More space for icon */
    margin-top: 0.2rem;
    width: 28px; /* Slightly larger check icon */
    height: 28px;
}

.about-us img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-md);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.about-us img:hover {
    transform: scale(1.03); /* More noticeable zoom */
    box-shadow: var(--box-shadow-lg); /* Stronger shadow on hover */
}

/*--------------------------------------------------------------
# 7.1. Why Choose BMG (Service Specific)
--------------------------------------------------------------*/
.why-choose-bmg {
    padding: var(--section-padding);
}

.why-choose-bmg .list-unstyled li {
    margin-bottom: var(--spacing-md);
}

.why-choose-bmg .list-unstyled img {
    filter: none; /* Ensure no unwanted color filters if applied globally */
}

/*--------------------------------------------------------------
# 8. Mission, Vision, Values Section - Distinct and symbolic
--------------------------------------------------------------*/
.mission-vision-section .card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.mission-vision-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.mission-vision-section .icon-wrapper {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.mission-vision-section .icon-wrapper .fas {
    font-size: 4rem; /* Larger and more prominent icons */
    transition: color 0.4s ease-in-out;
}

.mission-vision-section .card:hover .icon-wrapper .fas {
    color: var(--secondary-color); /* Change icon color on hover */
}

/*--------------------------------------------------------------
# 8.1. How It Works (Artist Onboarding Process)
--------------------------------------------------------------*/
.onboarding-process {
    background-color: var(--white-color); /* Ensure white background */
    padding: var(--section-padding);
}

.process-step {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.process-step .step-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    transition: all 0.4s ease-in-out;
}

.process-step:hover .step-icon {
    background-color: var(--primary-color);
}

.process-step .step-icon .fas {
    color: var(--primary-color);
    font-size: 2.5rem; /* Icon size for steps */
    transition: all 0.4s ease-in-out;
}

.process-step:hover .step-icon .fas {
    color: var(--white-color);
}

/* Arrows between steps for larger screens */
.process-steps {
    position: relative;
}

.process-steps .col-lg-3:not(:last-child)::after {
    content: '\f061'; /* Font Awesome arrow right icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -10%; /* Adjust position of arrow */
    transform: translateY(-50%) translateX(-50%);
    color: var(--border-color);
    font-size: 2rem;
    z-index: 0;
    display: flex; /* Flex to center icon */
    justify-content: center;
    align-items: center;
}

/* Hide arrows on smaller screens */
@media (max-width: 991.98px) {
    .process-steps .col-lg-3:not(:last-child)::after {
        content: '\f063'; /* Font Awesome arrow down icon */
        right: 50%;
        bottom: -20px; /* Position below card */
        top: auto;
        transform: translateX(50%) translateY(50%);
    }
}

@media (max-width: 767.98px) {
    .process-steps .col-lg-3:not(:last-child)::after {
        content: none; /* Hide arrows completely on mobile */
    }
}


/*--------------------------------------------------------------
# 9. Achievements Section - Dynamic counters and clear stats
--------------------------------------------------------------*/
.achievements-section {
    background-color: var(--light-gray-color);
}

.achievements-section .card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.achievements-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.achievements-section .fas {
    color: var(--primary-color);
    font-size: 3.5rem; /* Larger icon size */
    margin-bottom: var(--spacing-sm);
    transition: color 0.4s ease-in-out;
}

.achievements-section .card:hover .fas {
    color: var(--secondary-color);
}

.achievements-section .display-4 {
    font-size: clamp(3rem, 7vw, 4.5rem); /* Even larger, more impactful numbers */
    color: var(--dark-color); /* Dark color for numbers to contrast with blue */
    font-family: var(--heading-font); /* Use heading font for numbers */
    margin-bottom: var(--spacing-xs);
}

.achievements-section .card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

/*--------------------------------------------------------------
# 9.1. Platforms We Distribute To
--------------------------------------------------------------*/
.platforms-section {
    padding: var(--section-padding);
}

.platform-logo-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out;
    padding: var(--spacing-md);
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px; /* Fixed height for consistent grid */
}

.platform-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.platform-logo-card img {
    max-width: 80%; /* Ensure logos fit */
    max-height: 80px; /* Max height for logos */
    object-fit: contain;
    filter: grayscale(80%); /* Grayscale by default */
    transition: filter 0.4s ease-in-out;
}

.platform-logo-card:hover img {
    filter: grayscale(0%); /* Full color on hover */
}

.platform-logo-card p {
    font-size: var(--font-size-sm);
    color: var(--dark-color);
    margin-top: var(--spacing-xs);
    font-weight: 600;
}

/*--------------------------------------------------------------
# 10. Our Artists Section - Attractive and discoverable artist cards
--------------------------------------------------------------*/
.artist-card-custom {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-sm);
    transition: all 0.4s ease-in-out;
    background-color: var(--white-color);
    overflow: hidden; /* Ensure image radius is clipped */
}

.artist-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.artist-card-custom .card-img-top {
    width: 150px; /* Larger artist images */
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--primary-color); /* Thicker border */
    padding: 2px; /* Inner padding for border effect */
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out;
}

.artist-card-custom:hover .card-img-top {
    border-color: var(--secondary-color); /* Change border color on hover */
    transform: scale(1.02); /* Slight zoom on image */
}

.artist-card-custom .card-body {
    padding-top: var(--spacing-md); /* More padding for text */
    padding-bottom: var(--spacing-md);
}

.artist-card-custom h3 {
    margin-bottom: 0.25rem;
    font-size: 1.6rem; /* Larger artist name */
}

.artist-card-custom .card-text {
    font-size: var(--font-size-sm); /* Smaller genre text */
    color: var(--gray-color);
}

/*--------------------------------------------------------------
# 10.1. Call to Action (CTA) Section
--------------------------------------------------------------*/
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
}

.cta-section h2 {
    color: var(--white-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cta-section p.lead {
    color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# 11. Blog Section - Engaging blog card design
--------------------------------------------------------------*/
.blog-card-custom {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out;
    background-color: var(--white-color);
    overflow: hidden; /* Ensure image radius is clipped */
}

.blog-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.blog-card-custom img {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    height: 250px; /* Slightly taller blog images */
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.blog-card-custom:hover img {
    transform: scale(1.05); /* Zoom effect on image hover */
}

.blog-card-custom .card-body {
    padding: var(--spacing-md) var(--spacing-lg); /* More consistent padding */
}

.blog-card-custom small.text-muted {
    font-size: var(--font-size-sm);
    display: block; /* Ensure it takes its own line */
    margin-bottom: var(--spacing-xs);
}

.blog-card-custom h3 a {
    color: var(--dark-color);
    line-height: 1.4;
    font-size: 1.4rem; /* Adjusted blog title font size */
    font-weight: 700;
}

.blog-card-custom h3 a:hover {
    color: var(--primary-color);
    text-decoration: none; /* No underline on hover for cleaner look */
}

.blog-card-custom .btn-link {
    font-size: var(--font-size-base);
    padding: 0;
    margin-top: var(--spacing-xs);
}

/*--------------------------------------------------------------
# 11.1. Featured MMRT Tones (New Style)
--------------------------------------------------------------*/
.featured-mmrt-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out;
    background-color: var(--white-color);
    overflow: hidden; /* Ensures image corners are rounded */
}

.featured-mmrt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.featured-mmrt-card .card-img-top {
    width: 100%;
    height: 180px; /* Fixed height for image consistency */
    object-fit: cover; /* Ensures image covers the area, crops if necessary */
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

.featured-mmrt-card .card-body {
    padding: var(--spacing-md);
}

.featured-mmrt-card .card-title {
    font-size: var(--font-size-lg);
}

.featured-mmrt-card .card-text {
    font-size: var(--font-size-sm);
}

/* Specific styling for the how-to-get-mmrt section if needed, or re-use .process-steps */
.process-steps-compact .process-step {
    padding: var(--spacing-md); /* Slightly less padding than main process steps */
}

.process-steps-compact .process-step .step-icon {
    width: 60px; /* Smaller icons for compact steps */
    height: 60px;
}

.process-steps-compact .process-step .step-icon .fas {
    font-size: 2rem;
}

/*--------------------------------------------------------------
# 12. FAQ Section - Clean, accessible accordion
--------------------------------------------------------------*/
.faq-section {
    background-color: var(--light-gray-color);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden; /* Ensure rounded corners clip internal content */
}

.accordion-button {
    background-color: var(--white-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.2rem 1.5rem; /* More padding for buttons */
    font-size: var(--font-size-lg); /* Larger font for questions */
    border-radius: var(--border-radius-lg) !important; /* Ensure full button is rounded */
    transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-gray-color);
    border-bottom: 1px solid var(--border-color); /* Bottom border when open */
    box-shadow: none; /* Remove shadow when open to prevent overlap issues */
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(6000%) hue-rotate(200deg) brightness(95%) contrast(100%); /* Primary color arrow */
    transform: rotate(-180deg); /* Rotate arrow when open */
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
    outline: none;
}

.accordion-body {
    background-color: var(--white-color);
    color: var(--gray-color);
    padding: 1.2rem 1.5rem;
    font-size: var(--font-size-base);
    border-bottom-left-radius: var(--border-radius-lg); /* Rounded bottom corners when body is open */
    border-bottom-right-radius: var(--border-radius-lg);
}

.accordion-body strong {
    color: var(--primary-color); /* Highlight key terms in answers */
}

.accordion-body ul {
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
    padding-left: var(--spacing-md);
}

.accordion-body ul li {
    margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# 12.0 Music Video Distribution Specific Styles
--------------------------------------------------------------*/

/* Platforms We Distribute To Section */
.platforms-we-distribute .platform-grid .col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platforms-we-distribute .platform-item {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-md);
    transition: all 0.3s ease-in-out;
    width: 100%; /* Ensure it fills the column */
    min-height: 120px; /* Adjust as needed for vertical alignment */
}

.platforms-we-distribute .platform-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.platforms-we-distribute .platform-item img {
    max-height: 50px; /* Adjust height for logos */
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

.platforms-we-distribute .platform-item .fa-ellipsis-h {
    color: var(--primary-color);
    font-size: 3rem; /* Larger icon for 'more platforms' */
}

/* Featured Music Videos Section */
.featured-videos .video-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.4s ease-in-out;
    background-color: var(--white-color);
    overflow: hidden;
}

.featured-videos .video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.featured-videos .video-card .video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.featured-videos .video-card .video-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-videos .video-card:hover .video-thumbnail-wrapper img {
    transform: scale(1.05);
}

.featured-videos .video-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-videos .video-card:hover .play-overlay {
    opacity: 1;
}

.featured-videos .video-card .play-overlay i {
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.featured-videos .video-card .card-body {
    padding: var(--spacing-md);
}

.featured-videos .card-title {
    font-size: var(--font-size-lg);
}

.featured-videos .card-text {
    font-size: var(--font-size-sm);
}

/*--------------------------------------------------------------
# 13.0 Artist Social Media Management Specific Styles
--------------------------------------------------------------*/

/* Pricing Plans Section */
.pricing-plans .pricing-card {
    border-radius: var(--border-radius-xl); /* More rounded corners for pricing cards */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.pricing-plans .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg); /* More prominent shadow on hover */
}

.pricing-plans .pricing-card .card-header {
    background-color: var(--primary-color); /* Blue header */
    color: var(--white-color);
    border-bottom: none;
    padding: var(--spacing-md) var(--spacing-sm);
}

.pricing-plans .pricing-card .card-header h4 {
    font-size: var(--font-size-xl);
}

.pricing-plans .pricing-card .price-value h2 {
    font-size: 3.5rem; /* Larger price font */
    line-height: 1;
}

.pricing-plans .pricing-features {
    padding: 0 var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.pricing-plans .pricing-features li {
    font-size: var(--font-size-md);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.pricing-plans .pricing-features li i {
    font-size: var(--font-size-md);
    min-width: 20px; /* Ensure icon alignment */
}

.pricing-plans .pricing-card .btn {
    width: 80%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-lg);
    border-width: 2px;
}

.pricing-plans .featured-pricing-card {
    border: 3px solid var(--primary-color) !important;
    transform: scale(1.03); /* Slightly larger for featured card */
    box-shadow: var(--box-shadow-lg);
}

.pricing-plans .featured-pricing-card .card-header {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-bottom: none;
}

/* Success Stories Section */
.featured-success-stories .success-story-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.featured-success-stories .success-story-card:hover {
    box-shadow: var(--box-shadow-md);
    transform: translateY(-5px);
}

.featured-success-stories .success-story-card img {
    border-top-left-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
    /* For responsiveness, if using col-md-4/8 it's important */
    width: 100%;
    height: 100%; /* Ensure image fills height */
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .featured-success-stories .success-story-card img {
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-left-radius: 0;
        height: 200px; /* Fixed height for mobile thumbnails */
    }
}

/*--------------------------------------------------------------
# 13. Contact Section - Organized and clear information
--------------------------------------------------------------*/
.contact-section {
    background-color: var(--light-gray-color);
}

.contact-section .card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-lg); /* More padding for contact cards */
    background-color: var(--white-color);
}

.contact-section .fas {
    color: var(--primary-color);
}

.contact-section .social-icons a {
    color: var(--primary-color);
    margin-right: var(--spacing-md); /* More space between social icons */
    font-size: 1.8rem; /* Larger social icons */
}

.contact-section .social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px); /* Subtle lift on hover */
}

.contact-section .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs); /* Tighter label spacing */
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    margin-top: var(--spacing-xl); /* More space before map */
}

.map-container iframe {
    border: 0;
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: 500px; /* Taller map */
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}


/*--------------------------------------------------------------
# 15.0 About Us Page Specific Styles (Combined with general sections)
--------------------------------------------------------------*/

/* Hero Section (re-use generic .hero-subpage from 5.1) */

/* Our Story / Who We Are Section */
/* Uses general text/image layout, no specific new styles needed if standard Bootstrap classes are used */

/* Mission & Vision Section */
.mission-vision .icon-wrapper {
    background-color: var(--light-gray-color); /* A light background for icons */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
}

/* Core Values Section */
.core-values .value-card {
    border-radius: var(--border-radius-lg);
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.core-values .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.core-values .value-card .icon-wrapper {
    background-color: var(--light-gray-color); /* Light background for icons */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
}

/* Meet Our Team Section */
.meet-our-team .team-member-card {
    border-radius: var(--border-radius-lg);
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--border-color);
}

.meet-our-team .team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.meet-our-team .team-member-card img {
    border: 4px solid var(--primary-color); /* Primary color border for team photos */
    box-shadow: var(--box-shadow-sm);
}

.meet-our-team .team-member-card .card-body {
    padding: var(--spacing-md);
}

.meet-our-team .team-member-card .card-title {
    font-size: var(--font-size-lg);
}

/* Why Choose BMG Section (re-use generic from 7.1) */
/* Ensure .fa-check-circle styling is consistent, from previous examples */


/*--------------------------------------------------------------
# 14. Footer - Professional and informative
--------------------------------------------------------------*/
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
}

.footer-logo {
    max-height: 60px; /* Slightly larger footer logo */
    filter: brightness(0) invert(1);
    margin-bottom: var(--spacing-md);
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.75) !important; /* Brighter muted text for better readability */
    font-size: var(--font-size-base);
}

.footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.3rem 0; /* More padding for footer links */
    display: block; /* Make them block to apply padding */
}

.footer .list-unstyled a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
    transform: translateX(5px); /* Slight slide effect on hover */
}

.footer .social-icons a {
    color: var(--white-color);
    margin-right: var(--spacing-md);
    font-size: 1.6rem; /* Consistent icon size */
}

.footer .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Slightly more visible HR */
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/*--------------------------------------------------------------
# 15. AOS Animations (Basic Styling) - Keep for smooth scroll-based animations
--------------------------------------------------------------*/
[data-aos] {
    transition-property: opacity, transform;
    /* Add a slight delay for all AOS animations to ensure smoother appearance */
    transition-duration: 0.8s; /* Longer duration */
    transition-timing-function: ease-out; /* Smoother curve */
}