/* why rights reality */

/* --- Why RightsReality Hero Styles --- */
.why-rr-hero-section {
    padding: 0px 0 120px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: 1px solid #f1f5f9;
}

.why-rr-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Side Content Branding --- */
.text-blue-badge {
    color: #b38a38!important;
    background-color: #eff6ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.why-rr-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 20px 0;
}

.why-rr-hero-content p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Action Buttons Styles */
.why-rr-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.why-rr-primary-btn {
    display: inline-block;
    background-color: #0a2540;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-rr-primary-btn:hover {
    background-color: #0a2540;
    transform: translateY(-2px);
    color:#b38a38;
}

.why-rr-secondary-btn {
    display: inline-block;
    background-color: #e2e8f0;
    color: #334155;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-rr-secondary-btn:hover {
    background-color: #e2e8f0;
}

/* --- Right Side Visual Strip Stack --- */
.why-rr-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.visual-card-wrapper {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-feature-strip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.visual-feature-strip.highlight-accent {
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
}

.strip-icon-box {
    font-size: 28px;
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.strip-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.strip-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 991px) {
    .why-rr-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .why-rr-hero-actions {
        justify-content: center;
    }

    .why-rr-hero-visual {
        justify-content: center;
    }
    
    .visual-card-wrapper {
        max-width: 100%;
    }
    
    .visual-feature-strip {
        text-align: left;
    }
}

/* --- Why RightsReality Comparison Section --- */
.why-rr-comparison-section {
    padding: 20px 0;
    background-color: #f8fafc; /* Subtle light background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Table Wrapper for Responsive Scrolling --- */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

/* --- Custom Table Elements --- */
.comparison-custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px; /* Ensures text doesn't squeeze on small monitors */
}

/* Table Headers */
.comparison-custom-table th {
    padding: 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-custom-table th.th-fallback {
    color: #64748b;
    background-color: #f8fafc;
}

.comparison-custom-table th.th-rightsreality {
    color: #ffffff;
    background-color: #1e293b; /* Premium Dark Focus for RightsReality */
}

/* Table Body Rows */
.comparison-custom-table td {
    padding: 20px 24px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    border-bottom: 1px solid #edf2f7;
    vertical-align: middle;
}

.comparison-custom-table tr:last-child td {
    border-bottom: none;
}

/* Left Parameter Column Title */
.param-title {
    font-weight: 700;
    color: #0f172a !important;
    font-size: 15px !important;
    width: 25%;
}

/* RightsReality Column Highlight Styling */
.highlight-rr {
    background-color: rgba(59, 130, 246, 0.03);
    color: #0f172a !important;
    font-weight: 500;
    border-left: 2px solid rgba(59, 130, 246, 0.2);
    border-right: 2px solid rgba(59, 130, 246, 0.2);
    width: 40%;
}

tr:last-child .highlight-rr {
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

/* --- Responsive Scroll Hint --- */
@media (max-width: 991px) {
    .comparison-table-wrapper {
        margin-top: 30px;
    }
}

/* --- Why RightsReality Premium CTA Section --- */
.why-rr-cta-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean canvas contrast to the previous dark section */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Two Column Main Layout --- */
.cta-premium-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background-color: #0a2540; /* Solid Deep Navy Box for content */
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px -15px rgba(10, 37, 64, 0.25);
}

/* --- Left Side Content Elements --- */
.gold-text-badge {
    color: #b38a38 !important;
    background-color: rgba(179, 138, 56, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cta-text-side h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0;
    line-height: 1.2;
}

.cta-text-side p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Trust Features list below text */
.cta-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
}

.trust-icon {
    font-size: 18px;
}

/* --- Right Side Card & Form Styling --- */
.cta-form-side {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-quick-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #0a2540; /* Navy Label */
}

.form-group input, 
.form-group select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: #b38a38; /* Gold Border focus */
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(179, 138, 56, 0.15);
}

/* Premium Gold Action Button */
.cta-submit-btn {
    background-color: #b38a38; /* Matte Gold Button */
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-submit-btn:hover {
    background-color: #96732e; /* Darker Gold on hover */
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(179, 138, 56, 0.3);
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 991px) {
    .cta-premium-grid {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    
    .cta-text-side {
        text-align: center;
    }
    
    .cta-trust-indicators {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .cta-form-side {
        padding: 25px;
    }
}

/* add new sections */

.why-rr-expertise-section{
   padding:60px 0 100px 0; /* top padding reduce */
   background:#f8fafc;
}

/* Header already used pattern */
.section-header{
   text-align:center;
   max-width:750px;
   margin:0 auto 60px;
}

.section-tag{
   color:#b38a38;
   font-weight:600;
   display:inline-block;
   margin-bottom:10px;
}

/* Grid */
.expertise-grid{
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:25px;
}

/* Card */
.expertise-card{
   background:#ffffff;
   border-radius:14px;
   padding:30px;
   text-align:center;
   border:1px solid #e2e8f0;
   transition:0.3s;
   box-shadow:0 10px 25px -10px rgba(0,0,0,0.05);
}

.expertise-card:hover{
   transform:translateY(-6px);
   border-color:#b38a38;
   box-shadow:0 20px 35px -15px rgba(179,138,56,0.25);
}

/* Icon */
.expertise-icon{
   width:60px;
   height:60px;
   margin:0 auto 15px;
   display:flex;
   align-items:center;
   justify-content:center;
   font-size:26px;
   background:#0a2540;
   color:#ffffff;
   border-radius:12px;
}

/* Text */
.expertise-card h3{
   font-size:18px;
   font-weight:700;
   color:#0a2540;
   margin-bottom:10px;
}

.expertise-card p{
   font-size:14px;
   color:#64748b;
   line-height:1.6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px){
   .expertise-grid{
      grid-template-columns:repeat(2,1fr);
   }
}

/* Mobile */
@media (max-width: 768px){
   .expertise-grid{
      grid-template-columns:1fr;
   }

   .why-rr-expertise-section{
      padding:70px 0;
   }
}

/* Small Mobile */
@media (max-width: 480px){
   .expertise-card{
      padding:22px;
   }

   .expertise-card h3{
      font-size:16px;
   }

   .expertise-card p{
      font-size:13px;
   }
}

/* stats section */
.why-rr-stats-section{
   padding:90px 0;
   background:#ffffff;
}

/* Grid */
.stats-grid{
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:25px;
   margin-top:50px;
}

/* Card */
.stat-card{
   background:#0a2540;
   color:#ffffff;
   text-align:center;
   padding:40px 20px;
   border-radius:14px;
   transition:0.3s;
   position:relative;
   overflow:hidden;
}

/* Gold accent line */
.stat-card::before{
   content:"";
   position:absolute;
   top:0;
   left:0;
   width:100%;
   height:4px;
   background:#b38a38;
}

/* Number */
.stat-card h3{
   font-size:36px;
   font-weight:800;
   margin-bottom:10px;
   color:#ffffff;
}

/* Text */
.stat-card p{
   font-size:14px;
   color:#cbd5e1;
}

/* Hover */
.stat-card:hover{
   transform:translateY(-6px);
   box-shadow:0 20px 40px rgba(10,37,64,0.25);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px){
   .stats-grid{
      grid-template-columns:repeat(2,1fr);
   }
}

@media (max-width: 768px){
   .stats-grid{
      grid-template-columns:1fr;
   }

   .why-rr-stats-section{
      padding:70px 0;
   }
}

/* Premium Split Image Section Styles */
.wrr-trust-section {
    padding: 120px 20px;
    background-color: #f8fafc; /* Subtle luxury off-white tint canvas */
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.wrr-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Asymmetric balance layout */
    gap: 80px;
    align-items: center;
}

/* Left Content Column Styling */
.wrr-trust-tag {
    color: #b38a38 !important; /* Your Custom Signature Gold Code */
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.wrr-trust-content h2 {
    font-size: 40px;
    color: #0f172a; /* Elite slate black */
    line-height: 1.25;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.wrr-trust-lead {
    font-size: 17px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* Pillar Items Layout */
.wrr-trust-pillars {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wrr-pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wrr-pillar-icon {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.wrr-pillar-icon svg {
    width: 22px;
    height: 22px;
    color: #b38a38 !important; /* Golden icon emphasis */
}

/* Interactive Hover state for icons */
.wrr-pillar-item:hover .wrr-pillar-icon {
    background: #b38a38;
    border-color: #b38a38;
}

.wrr-pillar-item:hover .wrr-pillar-icon svg {
    color: #ffffff !important;
    transform: rotate(5deg);
}

.wrr-pillar-text h3 {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.wrr-pillar-text p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Right Side: Geometric Image Overlay Panel CSS */
.wrr-trust-image-panel {
    position: relative;
    display: flex;
    justify-content: center;
}

.wrr-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    z-index: 2;
}

.wrr-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Absolute Floating Background Accent Box */
.wrr-gold-accent-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #b38a38; /* Gold framing accent outline */
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: -1; /* Pushes framing line behind the wrapper picture window */
    transition: all 0.4s ease;
}

/* Global hover state linking photo transformations */
.wrr-trust-image-panel:hover .wrr-main-img {
    transform: scale(1.05); /* Soft ultra-premium magnification expansion */
}

.wrr-trust-image-panel:hover .wrr-gold-accent-box {
    transform: translate(-8px, -8px); /* Tightening geometric accent alignment */
}

/* Fluid responsive handling overrides */
@media (max-width: 992px) {
    .wrr-trust-container {
        grid-template-columns: 1fr; /* Portable frames layout stack */
        gap: 60px;
    }
    
    .wrr-trust-content h2 {
        font-size: 32px;
    }
    
    .wrr-image-wrapper {
        height: 380px;
    }
    
    .wrr-trust-section {
        padding: 70px 15px;
    }
}

/* Full Width Fluid Banner Section Styles */
.wrr-fluid-banner-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Page blend white background */
    font-family: Arial, sans-serif;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.wrr-fluid-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered Top Header Layout */
.wrr-fluid-banner-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto; /* Centered content boundaries */
}

.wrr-fluid-banner-tag {
    color: #b38a38 !important; /* Signature Gold Theme Color */
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.wrr-fluid-banner-header h2 {
    font-size: 40px;
    color: #0f172a; /* Slate corporate black */
    line-height: 1.25;
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.wrr-fluid-banner-header p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Horizontal Rolling Ribbon Panel Design */
.wrr-horizontal-marquee-window {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; /* Breaks outer container to go full screen edge-to-edge */
    background: #0f172a; /* Custom dark slate matching your header accents */
    padding: 25px 0;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.15);
}

/* Moving Tape Track Control */
.wrr-h-marquee-track {
    display: flex;
    width: calc(380px * 12); /* Uniform sizing track width multiplier */
    animation: scrollHorizontalLeft 30s linear infinite; /* Smooth continuous kinetic flow */
}

/* Individual Ribbon List Text Elements */
.wrr-h-ticker-item {
    width: 380px; /* Precise dimensions layout snapping */
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.wrr-h-tick-bullet {
    color: #b38a38 !important; /* Golden tracking bullet points */
    margin-right: 12px;
    font-size: 10px;
}

/* Pause flow layer action on desktop hover */
.wrr-horizontal-marquee-window:hover .wrr-h-marquee-track {
    animation-play-state: paused;
}

/* Infinite Kinetic Marquee Logic loop */
@keyframes scrollHorizontalLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 6)); /* Loops perfectly after shifting first set */
    }
}

/* Responsive Adaptive Fluid Scale Viewports */
@media (max-width: 768px) {
    .wrr-fluid-banner-header h2 {
        font-size: 30px;
    }
    .wrr-fluid-banner-header p {
        font-size: 15px;
    }
    .wrr-fluid-banner-section {
        padding: 60px 15px;
    }
    .wrr-horizontal-marquee-window {
        padding: 20px 0;
    }
}

/* Custom Signature Gold Badge Color Override */
.team-subtitle {
    color: #b38a38 !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}




