/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: #1a237e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    background-color: transparent !important;
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.navbar-toggler {
    border-color: #fff;
}

.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='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background-color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.styled-letter {
    display: inline-block;
    background-color: #1a237e;
    color: #fff;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 4px;
}

.carousel-container {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 60px 40px;
    margin-top: 40px;
    position: relative;
    min-height: 300px;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.campaign-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.logo-text h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 5px 0;
    font-weight: 500;
}

.logo-text p {
    font-size: 0.9rem;
    color: #4CAF50;
    margin: 0;
}

.campaign-tag {
    color: #666;
    font-size: 1rem;
    margin-top: 20px;
}

.carousel-campaign-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

.carousel-content {
    position: relative;
}

.carousel-content .premium-crown {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffd700;
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    z-index: 10;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: 20px;
    margin: 0;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
    border: 2px solid #fff;
    opacity: 1;
    margin: 0 5px;
    text-indent: 0;
}

.carousel-indicators .active {
    background-color: #fff;
    border-color: #333;
}

/* Selection Section */
.selection-section {
    background-color: #6a1b9a;
    padding: 80px 0;
    text-align: center;
}

.selection-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-selection {
    background-color: #fff;
    color: #6a1b9a;
    border: none;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-selection:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    text-align: center;
    padding: 0 40px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.btn-explore {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-explore:hover {
    background-color: #4a148c;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Trusted Section */
.trusted-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.trusted-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.highlight-purple {
    background-color: #6a1b9a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
}

.script-font {
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.brand-box {
    padding: 20px 30px;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
}

.brand-turms {
    /* background-color: #d32f2f; */
    color: #fff;
}

.brand-nova {
    background-color: #6a1b9a;
    color: #fff;
}

.brand-marc-loire,
.brand-yoho,
.brand-sorich,
.brand-sirona,
.brand-nu {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.brand-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.tree-icon {
    font-size: 1.5rem;
}

.organics {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.female-icon {
    font-size: 1.5rem;
    color: #333;
}

.brand-more {
    color: #666;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Collaborate Section */
.collaborate-section {
    padding: 100px 0;
    background-color: #fff;
}

.collaborate-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.highlight-purple-bg {
    background-color: #6a1b9a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
}

.collaborate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.collaborate-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.collaborate-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.collaborate-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.collaborate-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.collaborate-card a {
    color: #1976d2;
    text-decoration: none;
}

.collaborate-card a:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: #fff;
    padding: 80px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-section h4,
.footer-section h5 {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.subscribe-section {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.subscribe-input {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f3e5f5;
    font-size: 0.95rem;
    color: #333;
}

.subscribe-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.subscribe-btn:hover {
    background-color: #4a148c;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    background-color: #fff;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background-color: #333;
    color: #fff;
}

.trusted-text {
    font-size: 0.9rem;
    color: #999;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6a1b9a;
}

.contact-info {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 20px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.made-with {
    color: #666;
    font-size: 0.95rem;
}

.heart {
    color: #d32f2f;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.9rem;
}

/* About Page Styles */

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title-about {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-transform: lowercase;
}

.section-title-about .styled-letter {
    display: inline-block;
    background-color: #6a1b9a;
    color: #fff;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 4px;
    text-transform: lowercase;
}

.about-content-text {
    text-align: left;
}

.about-content-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.brand-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-logo {
    width: 200px;
    height: 200px;
    background-color: #000;
    border-radius: 50%;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

/* Engaged With Section */
.engaged-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-title-about-centered {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.highlight-purple-box {
    background-color: #6a1b9a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
}

.engaged-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Brand Logos Grid Section */
.brand-logos-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-logo-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    cursor: pointer;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.logo-content {
    text-align: center;
    width: 100%;
}

.logo-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.logo-circle-brand {
    width: 80px;
    height: 80px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.logo-m {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
}

.logo-m-neemans {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.logo-nova {
    color: #6a1b9a;
    font-size: 1.5rem;
}

.logo-geometric {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

/* Subscribe Banner Section */
.subscribe-banner-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #4a148c 0%, #6a1b9a 50%, #9c27b0 100%);
    margin-top: 0;
}

.subscribe-banner-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.subscribe-banner-text {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.8;
    font-weight: 400;
}

.subscribe-banner-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.subscribe-banner-input {
    flex: 1;
    max-width: 400px;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.3);
    color: #333;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.subscribe-banner-input::placeholder {
    color: #999;
}

.subscribe-banner-input:focus {
    outline: none;
    background-color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.6);
}

.subscribe-banner-btn {
    background-color: #fff;
    color: #6a1b9a;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.subscribe-banner-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Services Page Styles */

/* Services Hero Banner */
.services-hero-section {
    background-color: #6a1b9a;
    padding: 120px 0;
    color: #fff;
}

.services-hero-content {
    max-width: 900px;
}

.services-hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-hero-description {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    max-width: 900px;
}

/* Service Section Item */
.service-section-item {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.service-section-item:nth-child(odd) {
    background-color: #f5f5f5;
}

.service-section-item:nth-child(even) {
    background-color: #fff;
}

.service-content-wrapper {
    padding: 40px 60px;
}

.service-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 30px;
}

.service-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.service-image-wrapper {
    padding: 20px;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Text Alignment Styles */
.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Subscribe to Our Plans Hero Section */
.subscribe-plans-hero-section {
    background: linear-gradient(90deg, #1a237e 0%, #4a148c 30%, #6a1b9a 60%, #9c27b0 100%);
    padding: 150px 0;
    color: #fff;
    text-align: center;
}

.subscribe-plans-content {
    max-width: 900px;
    margin: 0 auto;
}

.subscribe-plans-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.subscribe-plans-cta-1 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.subscribe-plans-cta-2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 400;
}

.click-here-link {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #FFD700;
    text-underline-offset: 5px;
    transition: color 0.3s;
}

.click-here-link:hover {
    color: #FFD700;
    text-decoration-color: #fff;
}

.subscribe-plans-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-plans-input {
    flex: 1;
    padding: 18px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background-color: rgba(106, 27, 154, 0.6);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.subscribe-plans-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.subscribe-plans-input:focus {
    outline: none;
    background-color: rgba(106, 27, 154, 0.8);
    border-color: rgba(255,255,255,0.5);
}

.subscribe-plans-btn {
    background-color: #1976d2;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.subscribe-plans-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.4);
}

/* Ongoing Campaigns Page Styles */

/* Ongoing Campaigns Title Section */
.ongoing-campaigns-title-section {
    padding: 80px 0 60px;
    background-color: #fff;
    text-align: center;
}

.ongoing-campaigns-title {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.ongoing-campaigns-title .styled-letter {
    display: inline-block;
    background-color: #6a1b9a;
    color: #fff;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
}

/* Campaigns Grid Section */
.campaigns-grid-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.campaign-card {
    background-color: #6a1b9a;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.4);
}

.campaign-badge {
    background-color: #fff;
    color: #6a1b9a;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campaign-logo-container {
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-logo-img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.campaign-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.campaign-apply-btn {
    background-color: #fff;
    color: #6a1b9a;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.campaign-apply-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Apply Confirmation Modal */
.modal-backdrop {
    background: linear-gradient(180deg, #2a2a2a 0%, #4a148c 100%);
    backdrop-filter: blur(5px);
}

.apply-confirmation-modal {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

.apply-confirmation-modal .modal-body {
    padding: 40px 30px;
}

.apply-confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-confirmation-icon svg {
    width: 50px;
    height: 50px;
}

.apply-confirmation-modal .modal-title {
    font-weight: bold;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.apply-confirmation-modal .text-muted {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.apply-confirmation-modal .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.apply-confirmation-modal .btn-outline-dark {
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
}

.apply-confirmation-modal .btn-outline-dark:hover {
    background-color: #f5f5f5;
    border-color: #000;
    color: #000;
}

.apply-confirmation-modal .btn-dark {
    background-color: #000;
    color: #fff;
    border: none;
}

.apply-confirmation-modal .btn-dark:hover {
    background-color: #333;
    color: #fff;
}

.apply-confirmation-modal .btn-dark:disabled {
    background-color: #666;
    cursor: not-allowed;
}

/* Premium Crown Icon */
.premium-crown {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.premium-crown svg {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.campaign-card {
    position: relative;
}

/* Ongoing Subscribe Section */
.ongoing-subscribe-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #e1bee7 0%, #f8bbd0 100%);
}

.ongoing-subscribe-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.ongoing-subscribe-text {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.8;
    margin: 0;
}

.ongoing-subscribe-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.ongoing-subscribe-input {
    flex: 1;
    max-width: 400px;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1rem;
}

.ongoing-subscribe-input::placeholder {
    color: #999;
}

.ongoing-subscribe-input:focus {
    outline: none;
    background-color: #fff;
    border-color: rgba(0,0,0,0.2);
}

.ongoing-subscribe-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.ongoing-subscribe-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Brands Page Styles */

/* Brands Title Section */
.brands-title-section {
    padding: 80px 0 60px;
    background-color: #fff;
    text-align: center;
}

.brands-title {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.brands-title .styled-letter {
    display: inline-block;
    background-color: #6a1b9a;
    color: #fff;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 4px;
}

/* Brands Grid Section */
.brands-grid-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-card-background {
    width: 100%;
    height: 200px;
    background-color: #f5f5dc;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.colorful-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    height: 20px;
    border-radius: 50%;
}

.dot-red {
    background-color: #ff4444;
    top: 20%;
    left: 15%;
}

.dot-blue {
    background-color: #4444ff;
    top: 30%;
    right: 20%;
}

.dot-yellow {
    background-color: #ffdd44;
    top: 60%;
    left: 25%;
}

.dot-green {
    background-color: #44ff44;
    bottom: 25%;
    right: 15%;
}

.dot-purple {
    background-color: #aa44ff;
    top: 15%;
    right: 30%;
}

.dot-orange {
    background-color: #ff8844;
    bottom: 20%;
    left: 40%;
}

.brand-speech-bubble {
    background-color: #1976d2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.brand-logo-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brand-description {
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.brand-category-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
}

.brand-category-btn:hover {
    background-color: #4a148c;
    transform: translateY(-2px);
}

/* Collaborate Brand Section */
.collaborate-brand-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.collaborate-brand-content {
    max-width: 600px;
    margin: 0 auto;
}

.collaborate-brand-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.collaborate-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collaborate-btn:hover {
    background-color: #4a148c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 27, 154, 0.4);
}

/* Brands Subscribe Section */
.brands-subscribe-section {
    padding: 100px 0;
    background-color: #1a237e;
    text-align: center;
}

.brands-subscribe-content {
    max-width: 800px;
    margin: 0 auto;
}

.brands-subscribe-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.brands-subscribe-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.brands-subscribe-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.brands-subscribe-input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
}

.brands-subscribe-input::placeholder {
    color: #999;
}

.brands-subscribe-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.brands-subscribe-btn {
    background-color: #1a237e;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.brands-subscribe-btn:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Influencers Page Styles */

/* Influencers Title Section */
.influencers-title-section {
    padding: 80px 0 60px;
    background-color: #fff;
    text-align: center;
}

.influencers-title {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.influencers-title .styled-letter {
    display: inline-block;
    background-color: #1a237e;
    color: #fff;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 4px;
    position: relative;
}

.influencers-title .styled-letter::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 60%;
    background-color: #fff;
}

/* Influencers Grid Section */
.influencers-grid-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.influencers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.influencer-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.influencer-profile-picture {
    margin-bottom: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f5f5f5;
}

.influencer-username {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.influencer-tag {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.influencer-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.influencer-stats .stat-item {
    text-align: center;
}

.influencer-stats .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.influencer-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Connect Influencer Section */
.connect-influencer-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.connect-influencer-content {
    max-width: 600px;
    margin: 0 auto;
}

.connect-influencer-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.connect-influencer-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: 2px solid #9c27b0;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connect-influencer-btn:hover {
    background-color: #4a148c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 27, 154, 0.4);
}

/* Influencers Subscribe Section */
.influencers-subscribe-section {
    padding: 100px 0;
    background-color: #1a237e;
    text-align: center;
}

.influencers-subscribe-content {
    max-width: 800px;
    margin: 0 auto;
}

.influencers-subscribe-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.influencers-subscribe-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.influencers-subscribe-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.influencers-subscribe-input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
}

.influencers-subscribe-input::placeholder {
    color: #999;
}

.influencers-subscribe-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.influencers-subscribe-btn {
    background-color: #1a237e;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.influencers-subscribe-btn:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Subscription Page Styles */

/* Subscription Title Section */
.subscription-title-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
    text-align: center;
    color: #fff;
}

.subscription-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.subscription-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Toggle Section */
.toggle-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
}

.toggle-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    background-color: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 5px;
    max-width: 300px;
    margin: 0 auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-btn.active {
    background-color: #fff;
    color: #000;
}

.toggle-btn:not(.active) {
    background-color: transparent;
    color: #fff;
}

.toggle-btn:hover:not(.active) {
    background-color: rgba(255,255,255,0.1);
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
}

.pricing-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.plan-badge {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
}

.plan-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plan-benefits {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.choose-plan-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
}

.choose-plan-btn:hover {
    background-color: #4a148c;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
    color: #fff;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.faq-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 25px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

.faq-question:hover {
    color: rgba(255,255,255,0.8);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
}

.faq-answer p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin: 0;
}

/* Auth Pages Styles (Login & Signup) */

.auth-container {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    margin-top: 0;
}

.auth-form-wrapper {
    background-color: #e1bee7;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.auth-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    transition: box-shadow 0.3s;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-group input::placeholder {
    color: #999;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #333;
}

.password-hint {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    margin-bottom: 0;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #6a1b9a;
    border: 2px solid #fff;
    border-radius: 3px;
}

.terms-text {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.6;
}

.terms-link {
    color: #9c27b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.terms-link:hover {
    color: #7b1fa2;
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-bottom: 20px;
}

.auth-submit-btn:hover {
    background-color: #4a148c;
    transform: translateY(-2px);
}

.auth-links {
    text-align: center;
    margin-bottom: 25px;
}

.auth-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.auth-link:hover {
    color: rgba(255,255,255,0.8);
}

.highlight-link {
    color: #9c27b0;
    font-weight: 500;
    transition: color 0.3s;
}

.highlight-link:hover {
    color: #7b1fa2;
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    color: #fff;
    font-size: 0.9rem;
    background-color: #e1bee7;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.facebook-btn svg {
    fill: #fff;
}

.apple-btn {
    background-color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.apple-btn svg {
    fill: #000;
}

.google-btn {
    background-color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.instagram-btn svg {
    fill: #fff;
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
    padding: 80px 0 60px;
    background-color: #fff;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.contact-social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.contact-social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.contact-social-icon:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-3px);
}

.contact-social-icon svg {
    width: 24px;
    height: 24px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.contact-form {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group-wide {
    grid-column: span 2;
}

.contact-form .form-group-message {
    grid-column: span 3;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background-color: transparent;
    color: #333;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #6a1b9a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: left;
    margin-top: 30px;
}

.contact-submit-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-submit-btn:hover {
    background-color: #4a148c;
    transform: translateY(-2px);
}

/* Contact Subscribe Section */
.contact-subscribe-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
    color: #fff;
}

.contact-subscribe-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.contact-subscribe-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.email-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.email-icon {
    position: absolute;
    left: 15px;
    color: #999;
    z-index: 1;
}

.contact-subscribe-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
}

.contact-subscribe-input::placeholder {
    color: #999;
}

.contact-subscribe-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.contact-subscribe-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-subscribe-btn:hover {
    background-color: #4a148c;
    transform: translateY(-2px);
}

.contact-subscribe-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.yellow-dots-pattern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 300px;
    margin-left: auto;
}

.yellow-dot {
    width: 20px;
    height: 20px;
    background-color: #FFD700;
    border-radius: 50%;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid,
    .collaborate-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Footer Subscribe Section Responsive */
    .subscribe-section {
        flex-direction: column;
    }
    
    .subscribe-input {
        width: 100%;
        min-width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .collaborate-cards,
    .brands-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-selection {
        width: 80%;
    }
    
    .about-image-left,
    .about-image-right {
        display: none;
    }
    
    /* About Page Responsive */
    .section-title-about {
        font-size: 2.5rem;
    }
    
    .section-title-about-centered {
        font-size: 2.5rem;
    }
    
    .subscribe-banner-title {
        font-size: 2.5rem;
    }
    
    .brand-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscribe-banner-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .subscribe-banner-input {
        max-width: 100%;
    }
    
    .subscribe-banner-btn {
        width: 100%;
    }
    
    /* Services Page Responsive */
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-content-wrapper {
        padding: 20px;
        text-align: left !important;
    }
    
    .service-image-placeholder {
        height: 300px;
        margin-top: 30px;
    }
    
    /* Subscribe Plans Hero Responsive */
    .subscribe-plans-hero-section {
        padding: 100px 0;
    }
    
    .subscribe-plans-title {
        font-size: 3rem;
    }
    
    .subscribe-plans-cta-1 {
        font-size: 1.2rem;
    }
    
    .subscribe-plans-cta-2 {
        font-size: 1rem;
    }
    
    .subscribe-plans-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .subscribe-plans-input {
        width: 100%;
    }
    
    .subscribe-plans-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .brand-logos-grid {
        grid-template-columns: 1fr;
    }
    
    .circle-logo {
        width: 150px;
        height: 150px;
    }
    
    .section-title-about {
        font-size: 2rem;
    }
    
    .section-title-about-centered {
        font-size: 2rem;
    }
    
    .subscribe-banner-title {
        font-size: 2rem;
    }
    
    /* Services Page Responsive */
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-content-wrapper {
        padding: 20px;
        text-align: left !important;
    }
    
    .service-image-placeholder {
        height: 300px;
        margin-top: 30px;
    }
    
    /* Subscribe Plans Hero Mobile */
    .subscribe-plans-title {
        font-size: 2.5rem;
    }
    
    .subscribe-plans-cta-1 {
        font-size: 1.1rem;
    }
    
    .subscribe-plans-cta-2 {
        font-size: 0.95rem;
    }
    
    /* Ongoing Campaigns Responsive */
    .ongoing-campaigns-title {
        font-size: 2.5rem;
    }
    
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .campaign-card {
        min-height: 260px;
        padding: 25px 20px;
    }
    
    .ongoing-subscribe-title {
        font-size: 2.5rem;
    }
    
    .ongoing-subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ongoing-subscribe-input {
        max-width: 100%;
    }
    
    .ongoing-subscribe-btn {
        width: 100%;
    }
    
    /* Ongoing Campaigns Mobile */
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .campaign-card {
        min-height: 250px;
        padding: 20px 15px;
    }
    
    /* Brands Page Responsive */
    .brands-title {
        font-size: 2.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .collaborate-brand-title {
        font-size: 2.5rem;
    }
    
    .brands-subscribe-title {
        font-size: 2.5rem;
    }
    
    .brands-subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .brands-subscribe-input {
        width: 100%;
    }
    
    .brands-subscribe-btn {
        width: 100%;
    }
    
    /* Influencers Page Responsive */
    .influencers-title {
        font-size: 2.5rem;
    }
    
    .influencers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .connect-influencer-title {
        font-size: 2.5rem;
    }
    
    .influencers-subscribe-title {
        font-size: 2.5rem;
    }
    
    .influencers-subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .influencers-subscribe-input {
        width: 100%;
    }
    
    .influencers-subscribe-btn {
        width: 100%;
    }
    
    /* Subscription Page Responsive */
    .subscription-title {
        font-size: 2.5rem;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    /* Auth Pages Mobile */
    .auth-form-wrapper {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 1.8rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    /* Contact Page Responsive */
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-social-icons {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 30px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-group-wide,
    .contact-form .form-group-message {
        grid-column: span 1;
    }
    
    .contact-subscribe-title {
        font-size: 2.5rem;
    }
    
    .contact-subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-subscribe-btn {
        width: 100%;
    }
    
    /* Contact Page Mobile */
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-subscribe-title {
        font-size: 2rem;
    }
    
    .yellow-dots-pattern {
        grid-template-columns: repeat(4, 1fr);
        max-width: 200px;
    }
}

/* Profile Page Styles */
.profile-page {
    background-color: #f5f5f5;
    min-height: 100vh;
}

.profile-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.profile-sidebar {
    width: 250px;
    background: linear-gradient(180deg, #1a237e 0%, #6a1b9a 100%);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.sidebar-nav {
    padding: 0 10px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-item.active .nav-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nav-link svg {
    width: 20px;
    height: 20px;
}

/* Profile Main Content */
.profile-main-content {
    margin-left: 250px;
    flex: 1;
    width: calc(100% - 250px);
}

/* Profile Header */
.profile-header {
    background-color: #fff;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.welcome-section {
    flex: 1;
}

.welcome-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.banner-section {
    width: 100%;
    margin-bottom: 0;
}

.profile-banner {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 50%, #1565c0 100%);
    border-radius: 8px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.profile-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="1200" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.user-account-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-name-text {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.logout-link {
    color: #6a1b9a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.logout-link:hover {
    color: #4a148c;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #6a1b9a;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Profile Section */
.profile-section {
    background-color: #fff;
    padding: 40px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-picture-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.profile-picture-container {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #6a1b9a;
}

.profile-picture-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #6a1b9a;
    color: #999;
}

.edit-profile-pic-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.edit-profile-pic-btn:hover {
    background-color: #4a148c;
}

.profile-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.profile-name {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.profile-role {
    font-size: 1.1rem;
    color: #6a1b9a;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.profile-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.profile-actions {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
}

.edit-profile-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.edit-profile-btn:hover {
    background-color: #4a148c;
}

/* Profile Cards Container */
.profile-cards-container {
    padding: 30px;
}

.profile-cards-container .row {
    margin: 0;
}

.profile-cards-container .col-md-4,
.profile-cards-container .col-md-8 {
    padding: 0 15px;
}

.profile-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* About Card */
.about-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 0.95rem;
}

.detail-item svg {
    color: #6a1b9a;
    flex-shrink: 0;
}

/* Collaboration Card */
.collaboration-list {
    margin-bottom: 20px;
}

.collaboration-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 10px;
}

.collaboration-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.brand-logo-square {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a1b9a 0%, #9c27b0 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.last-active {
    font-size: 0.85rem;
    color: #999;
}

.collaboration-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.viewed {
    background-color: #4caf50;
    color: #fff;
}

.status-badge.waiting {
    background-color: #ffc107;
    color: #333;
}

.status-badge.approved {
    background-color: #4caf50;
    color: #fff;
}

.status-badge.rejected {
    background-color: #f44336;
    color: #fff;
}

.collaboration-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4caf50;
    flex-shrink: 0;
}

.timeline-date {
    margin-left: auto;
    color: #999;
}

/* Engagement Card */
.engagement-value {
    font-size: 3rem;
    font-weight: bold;
    color: #6a1b9a;
    text-align: center;
    padding: 20px 0;
}

/* Social Links Card */
.social-links-content {
    position: relative;
    min-height: 200px;
}

.no-links-text {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.add-social-link-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}

.add-social-link-btn:hover {
    background-color: #4a148c;
    transform: scale(1.1);
}

.add-social-link-btn svg {
    width: 24px;
    height: 24px;
}

/* Social Media Links List */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.social-link-item:hover {
    background-color: #f0f0f0;
}

.social-link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a1b9a;
    flex-shrink: 0;
}

.social-link-info {
    flex: 1;
}

.social-link-url {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
}

.social-link-url:hover {
    color: #6a1b9a;
}

.social-link-username {
    color: #999;
    font-size: 0.9rem;
    font-weight: normal;
}

.delete-social-link-btn {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.delete-social-link-btn:hover {
    transform: scale(1.1);
}

/* Brand Enquiry Form Modal */
.enquiry-modal-content {
    border: none;
    border-radius: 0;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
}

.enquiry-modal-header {
    border: none;
    padding: 20px 30px 10px;
    justify-content: flex-end;
}

.enquiry-modal-body {
    padding: 30px 50px 50px;
    background-color: #fff;
}

.enquiry-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.enquiry-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.enquiry-form-group {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.enquiry-label {
    display: inline-block;
    font-size: 0.95rem;
    color: #333;
    min-width: 180px;
    padding-top: 12px;
    font-weight: normal;
    text-align: left;
}

.required-star {
    color: #f44336;
    margin-left: 3px;
}

.enquiry-input,
.enquiry-textarea {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s;
    font-family: inherit;
}

.enquiry-input:focus,
.enquiry-textarea:focus {
    outline: none;
    border-color: #6a1b9a;
}

.enquiry-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.enquiry-form-submit {
    text-align: center;
    margin-top: 40px;
}

.enquiry-submit-btn {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-submit-btn:hover {
    background-color: #4a148c;
    transform: translateY(-2px);
}

.enquiry-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#enquiry-alert {
    margin-bottom: 25px;
}

#enquiry-alert .alert {
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 0.9rem;
}

/* Responsive Design for Enquiry Modal */
@media (max-width: 768px) {
    .enquiry-modal-body {
        padding: 20px 25px 30px;
    }
    
    .enquiry-title {
        font-size: 1.5rem;
    }
    
    .enquiry-subtitle {
        font-size: 0.9rem;
    }
    
    .enquiry-form-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .enquiry-label {
        min-width: auto;
        padding-top: 0;
    }
    
    .enquiry-input,
    .enquiry-textarea {
        width: 100%;
    }
    
    .enquiry-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Influencer Registration Form */
.profile-upload-wrapper {
    flex: 1;
}

.profile-preview-container {
    margin-top: 15px;
    text-align: center;
}

.profile-preview-image {
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
    border: 3px solid #6a1b9a;
    object-fit: cover;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #999;
}

/* Collaboration Details Modal */
.brand-logo-square-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a1b9a 0%, #9c27b0 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 12px;
    margin: 0 auto;
}

.detail-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-header h4 {
    color: #333;
    font-weight: bold;
    margin: 10px 0;
}

.detail-section {
    margin-top: 20px;
}

.section-title {
    color: #6a1b9a;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 2.1rem;
}

.timeline-detailed {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    position: relative;
}

.timeline-detailed::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item-detailed {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.timeline-dot-detailed {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #4caf50;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #4caf50;
}

.timeline-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.timeline-content strong {
    color: #333;
    font-size: 1rem;
}

.timeline-date-detailed {
    color: #999;
    font-size: 0.9rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.info-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* Responsive Design for Profile Page */
@media (max-width: 992px) {
    .profile-sidebar {
        width: 200px;
    }
    
    .profile-main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }
}

@media (max-width: 768px) {
    .profile-sidebar {
        width: 70px;
    }
    
    .sidebar-logo {
        font-size: 1rem;
    }
    
    .nav-link span {
        display: none;
    }
    
    .profile-main-content {
        margin-left: 70px;
        width: calc(100% - 70px);
    }
    
    .profile-picture-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-actions {
        width: 100%;
        justify-content: center;
    }
    
    .profile-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .user-account-section {
        width: 100%;
        justify-content: space-between;
    }
    
    .profile-cards-container .col-md-4,
    .profile-cards-container .col-md-8 {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .collaboration-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .collaboration-status {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

