/* ===================================
   BROKERS PAGE - PROFESSIONAL DESIGN
   Complete responsive styles
   =================================== */

/* ===================================
   BASE & UTILITIES
   =================================== */

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

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 { font-family: "Poppins", sans-serif; }

/* ===================================
   HERO SECTION
   =================================== */

.brokers-hero {
    background-color: #ee2966;
    padding: 40px 20px;
    position: relative;
}

.brokers-hero-container {
    max-width: 1280px;
    margin: 0 auto;
}

.brokers-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
}

.brokers-hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brokers-hero-image-wrap {
   width: 100%;
   aspect-ratio: 9 / 10;
   background-color: #e5e7eb;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.brokers-hero-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 16px;
   max-height: 680px;
}

.brokers-hero-content-col {
    width: 100%;
}

.brokers-hero-content-wrap {
    max-width: 600px;
}

/* Reviews Badge */
.brokers-reviews-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.reviews-text {
    color: white;
    font-size: 13px;
    line-height: 20px;
}

.reviews-google {
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-text {
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.brokers-star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-yellow {
    width: 16px;
    height: 16px;
}

/* Hero Title */
.brokers-hero-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.brokers-hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.brokers-hero-description p {
    margin: 0;
}

/* CTA Buttons */
.brokers-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-brokers-white-large {
    background-color: white;
    color: #ee2966;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-align: center;
}

.btn-brokers-white-large:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

.brokers-link-underline {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: underline;
    text-align: center;
    transition: opacity 0.3s;
}

.brokers-link-underline:hover {
    opacity: 0.8;
}

/* ===================================
   WHY BROKERS SECTION
   =================================== */

.brokers-why-section {
    background-color: white;
    padding: 60px 20px;
}

.brokers-why-container {
    max-width: 1280px;
    margin: 0 auto;
}

.brokers-why-header {
    text-align: center;
    max-width: 100%;
    margin-bottom: 48px;
}

.brokers-why-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.brokers-why-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.brokers-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.brokers-why-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.brokers-why-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #ee2966;
}

.brokers-why-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ee2966 0%, #d91d56 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(238, 41, 102, 0.2);
}

.brokers-why-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.brokers-why-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ===================================
   HOW IT WORKS SECTION (DARK)
   =================================== */

.brokers-sound-section {
    background-color: #1f2937;
    padding: 60px 20px;
}

.brokers-sound-container {
    max-width: 1280px;
    margin: 0 auto;
}

.brokers-sound-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brokers-sound-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #ee2966;
    margin: 0 0 0px 0;
}

.brokers-sound-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.brokers-sound-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.brokers-sound-card {
    background-color: #374151;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.brokers-sound-card:hover {
    background-color: #4b5563;
    transform: translateY(-2px);
}

.sound-card-icon-bg {
    background-color: #ee2966;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sound-card-icon {
    font-size: 28px;
}

.brokers-sound-card h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: white;
    margin: 0;
}

.brokers-sound-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   BROKER BENEFITS SECTION (MOSAIC GRID)
   =================================== */

.brokers-benefits-section {
    background-color: white;
    padding: 60px 20px;
}

.brokers-benefits-container {
    max-width: 1280px;
    margin: 0 auto;
}

.brokers-benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.brokers-benefits-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.brokers-benefits-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Mosaic Grid - 3 on top, 2 on bottom */
.brokers-benefits-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brokers-benefit-card {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brokers-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-card-icon {
    width: 56px;
    height: 56px;
    background-color: #fef2f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

.benefit-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .brokers-benefits-mosaic-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .brokers-benefit-card {
        padding: 24px 20px;
    }
}

/* Responsive - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .brokers-benefits-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.brokers-testimonials-section {
    background-color: #f9fafb;
    padding: 60px 20px;
}

.brokers-testimonials-container {
    max-width: 100%;
    margin: 0 auto;
}

.brokers-testimonials-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #ee2966;
    text-align: center;
    margin-bottom: 48px;
}

.brokers-testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 20px 20px 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ee2966 #f3f4f6;
}

.testimonials-track::-webkit-scrollbar {
    height: 8px;
}

.testimonials-track::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.testimonials-track::-webkit-scrollbar-thumb {
    background: #ee2966;
    border-radius: 10px;
}

.brokers-testimonial-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 32px;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.testimonial-stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-pink-icon {
    width: 16px;
    height: 16px;
}

.testimonial-heading {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 12px;
}

.testimonial-review {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.author-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background-color: #ee2966;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info-col {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
}

.author-job-title {
    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
}

/* ===================================
   COMMISSION STRUCTURE SECTION - TWO COLUMN LAYOUT
   =================================== */

.brokers-save-section {
    background-color: white;
    padding: 60px 20px;
}

.brokers-save-container {
    max-width: 1280px;
    margin: 0 auto;
}

.commission-two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Left Column - Text Content */
.commission-content-left {
    flex: 1;
}

.brokers-save-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.brokers-save-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: left;
    margin-bottom: 32px;
}

/* Commission Features */
.commission-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 16px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    flex: 1;
}

/* Right Column - Commission Graphic */
.commission-graphic-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NEW Commission Comparison Design */
.commission-comparison-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px 32px;
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
}

/* Rate Cards */
.rate-card {
    background: white;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.rate-card.standard {
    border: 2px solid #e5e7eb;
}

.rate-card.reef {
    background: linear-gradient(135deg, #ee2966 0%, #d91d56 100%);
    border: none;
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(238, 41, 102, 0.35);
}

.rate-card.reef .rate-card-label,
.rate-card.reef .rate-card-percentage,
.rate-card.reef .rate-card-detail {
    color: white;
}

.rate-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.rate-card-percentage {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.rate-card-detail {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
}

/* Arrow Between Cards */
.rate-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(238, 41, 102, 0.2);
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE - TABLET (768px+)
   =================================== */
@media (min-width: 768px) {
    /* Hero */
    .brokers-hero {
        padding: 60px 32px;
    }
    
    .brokers-hero-grid {
        flex-direction: row;
        gap: 64px;
    }
    
    .brokers-hero-image-col {
        flex: 1;
    }
    
    .brokers-hero-content-col {
        flex: 1;
    }
    
    .brokers-hero-title {
        font-size: 42px;
    }
    
    .brokers-hero-description {
        font-size: 17px;
    }
    
    .brokers-cta-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .btn-brokers-white-large {
        width: auto;
        padding: 16px 40px;
    }
    
    /* Why Section */
    .brokers-why-section {
        padding: 80px 32px;
    }
    
    .brokers-why-title {
        font-size: 48px;
    }
    
    .brokers-why-subtitle {
        font-size: 18px;
    }
    
    .brokers-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* How It Works */
    .brokers-sound-section {
        padding: 80px 32px;
    }
    
    .brokers-sound-title {
        font-size: 48px;
    }
    
    .brokers-sound-subtitle {
        font-size: 18px;
    }
    
    .brokers-sound-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* Benefits */
    .brokers-benefits-section {
        padding: 80px 32px;
    }
    
    .brokers-benefits-title {
        font-size: 48px;
    }
    
    .brokers-benefits-subtitle {
        font-size: 18px;
    }
    
    .brokers-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* Testimonials */
    .brokers-testimonials-section {
        padding: 80px 32px;
    }
    
    .brokers-testimonials-title {
        font-size: 42px;
    }
    
    .testimonials-track {
        padding: 20px 32px 40px;
    }
    
    .brokers-testimonial-card {
        min-width: 360px;
    }
    
    /* Commission Structure */
    .brokers-save-section {
        padding: 80px 32px;
    }
    
    .brokers-save-title {
        font-size: 48px;
    }
    
    .brokers-save-subtitle {
        font-size: 18px;
    }
    
    .commission-two-column-layout {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
    
    .commission-comparison {
        flex-direction: row;
        justify-content: center;
        padding: 56px 40px;
    }
    
    .commission-stat-large {
        max-width: 240px;
    }
    
    .stat-number-huge {
        font-size: 56px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP (1024px+)
   =================================== */
@media (min-width: 1024px) {
    /* Hero */
    .brokers-hero {
        padding: 80px 40px;
    }
    
    .brokers-hero-title {
        font-size: 52px;
    }
    
    .brokers-hero-description {
        font-size: 18px;
    }
    
    /* Why Section */
    .brokers-why-section {
        padding: 100px 40px;
    }
    
    .brokers-why-title {
        font-size: 60px;
    }
    
    .brokers-why-subtitle {
        font-size: 19px;
    }
    
    .brokers-why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .brokers-why-card {
        padding: 40px 32px;
    }
    
    .brokers-why-card-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }
    
    .brokers-why-card-title {
        font-size: 22px;
    }
    
    .brokers-why-card-text {
        font-size: 16px;
    }
    
    /* How It Works */
    .brokers-sound-section {
        padding: 100px 40px;
    }
    
    .brokers-sound-title {
        font-size: 60px;
    }
    
    .brokers-sound-subtitle {
        font-size: 19px;
    }
    
    .brokers-sound-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .brokers-sound-card {
        padding: 40px 32px;
    }
    
    .sound-card-icon-bg {
        width: 64px;
        height: 64px;
    }
    
    .sound-card-icon {
        font-size: 32px;
    }
    
    .brokers-sound-card h3 {
        font-size: 22px;
    }
    
    .brokers-sound-card p {
        font-size: 16px;
    }
    
    /* Benefits */
    .brokers-benefits-section {
        padding: 100px 40px;
    }
    
    .brokers-benefits-title {
        font-size: 60px;
    }
    
    .brokers-benefits-subtitle {
        font-size: 19px;
    }
    
    .brokers-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .brokers-benefit-card {
        padding: 40px 32px;
    }
    
    .benefit-card-icon {
        width: 64px;
        height: 64px;
    }
    
    .benefit-card-title {
        font-size: 20px;
    }
    
    .benefit-card-text {
        font-size: 16px;
    }
    
    /* Testimonials */
    .brokers-testimonials-section {
        padding: 100px 40px;
    }
    
    .brokers-testimonials-title {
        font-size: 48px;
        margin-bottom: 56px;
    }
    
    .testimonials-track {
        padding: 20px 48px 48px;
    }
    
    .brokers-testimonial-card {
        min-width: 380px;
        padding: 40px;
    }
    
    .testimonial-heading {
        font-size: 20px;
    }
    
    .testimonial-review {
        font-size: 16px;
    }
    
    /* Commission Structure */
    .brokers-save-section {
        padding: 100px 40px;
    }
    
    .brokers-save-title {
        font-size: 60px;
    }
    
    .brokers-save-subtitle {
        font-size: 19px;
    }
    
    .commission-comparison {
        padding: 64px 48px;
    }
    
    .commission-stat-large {
        max-width: 280px;
    }
    
    .stat-number-huge {
        font-size: 64px;
    }
    
    .commission-features {
        gap: 24px;
    }
    
    .feature-item {
        font-size: 17px;
    }
}