/* ========================================
   BASE STYLES - Dark Mode (Default)
   ======================================== */
.ibans-page {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #f5f5f5;
    font-family: var(--font-body);
    line-height: 1.7;
    background-color: #050505;
    box-sizing: border-box;
}

.ibans-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
    border-bottom: 1px solid #222222;
    margin-bottom: 3rem;
    border-radius: 12px;
}

.ibans-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.ibans-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

.ibans-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #121212;
    border: 1px solid #222222;
    border-radius: 12px;
}

.ibans-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff9f;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #222222;
}

.ibans-content {
    color: #f5f5f5;
}

.ibans-content p {
    margin-bottom: 1rem;
}

.ibans-content a {
    color: #00ff9f;
    text-decoration: none;
}

.ibans-content a:hover {
    color: #00d484;
}

.ibans-intro {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

/* List Styles */
.ibans-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ibans-list li {
    padding: 0.6rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #f5f5f5;
    border-bottom: 1px solid #222222;
}

.ibans-list li:last-child {
    border-bottom: none;
}

.ibans-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #00ff9f;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1rem;
}

.ibans-list ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

/* Warning list */
.ibans-list.ibans-warning li::before {
    background: #00ff9f;
    width: 18px;
    height: 18px;
    top: 0.5rem;
    border-radius: 3px;
}

/* ========================================
   BUTTONS - Dark Mode
   ======================================== */
.ibans-btn,
.ibans-btn:visited {
    display: inline-block;
    background-color: #00ff9f;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ibans-btn:hover {
    background-color: #00d484;
    color: #000;
    transform: translateY(-2px);
}

.ibans-btn-primary,
.ibans-btn-primary:visited {
    display: inline-block;
    background-color: #00ff9f;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ibans-btn-primary:hover {
    background-color: #00d484;
    color: #000;
    transform: translateY(-2px);
}

/* ========================================
   VALUES GRID - Dark Mode
   ======================================== */
.ibans-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.ibans-value-card {
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ibans-value-card:hover {
    transform: translateY(-5px);
    border-color: #00ff9f;
}

.ibans-value-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    color: #00ff9f;
}

.ibans-value-icon svg {
    width: 100%;
    height: 100%;
}

.ibans-value-card h3 {
    color: #00ff9f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ibans-value-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   SERVICES GRID - Dark Mode
   ======================================== */
.ibans-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.ibans-service-card {
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ibans-service-card:hover {
    transform: translateY(-5px);
    border-color: #00ff9f;
}

.ibans-service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: #00ff9f;
}

.ibans-service-icon svg {
    width: 100%;
    height: 100%;
}

.ibans-service-title {
    color: #00ff9f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ibans-service-desc {
    color: #a0a0a0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ibans-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ibans-tags li {
    background: #0a0a0a;
    color: #f5f5f5;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #222222;
}

/* ========================================
   CTA SECTION - Dark Mode
   ======================================== */
.ibans-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #00ff9f;
    border-radius: 12px;
    margin: 2rem 0;
}

.ibans-cta h2 {
    color: #f5f5f5;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ibans-cta p {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

/* ========================================
   PROCESS GRID - Dark Mode
   ======================================== */
.ibans-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ibans-process-step {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 12px;
    position: relative;
}

.ibans-process-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff9f;
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.ibans-process-step h3 {
    color: #f5f5f5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ibans-process-step p {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   TESTIMONIALS CAROUSEL - Dark Mode
   ======================================== */
.ibans-testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.ibans-carousel-wrapper {
    overflow: hidden;
}

.ibans-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ibans-carousel-slide {
    min-width: 100%;
    padding: 0 0.5rem;
}

.ibans-testimonial {
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 1.5rem;
}

.ibans-testimonial-text {
    font-style: italic;
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ibans-testimonial-author {
    color: #00ff9f;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ibans-testimonial-role {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin: 0;
}

.ibans-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ibans-carousel-dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #222222;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 2px;
    padding: 0;
}

.ibans-carousel-dot.active {
    background: #00ff9f;
}

/* ========================================
   SOCIAL LINKS - Dark Mode
   ======================================== */
.ibans-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.ibans-connect {
    text-align: center;
}

.ibans-contact-info {
    margin-top: 1.5rem;
    color: #a0a0a0;
}

.ibans-contact-info a {
    color: #00ff9f;
}

.ibans-social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ========================================
   NOTE BOX - Dark Mode
   ======================================== */
.ibans-note {
    background: #1a1a1a;
    border-left: 4px solid #00ff9f;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.ibans-note p {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* ========================================
   LIGHT MODE OVERRIDES
   ======================================== */
body.light-mode .ibans-page {
    background-color: #f5f7fa;
    color: #1a1a1a;
}

body.light-mode .ibans-hero {
    background: linear-gradient(180deg, #f0f4f8 0%, #f5f7fa 100%);
    border-bottom: 1px solid #e1e4e8;
}

body.light-mode .ibans-title {
    color: #1a1a1a;
}

body.light-mode .ibans-subtitle {
    color: #555555;
}

body.light-mode .ibans-section {
    background: #ffffff;
    border-color: #e1e4e8;
}

body.light-mode .ibans-section-title {
    color: #007bff;
    border-bottom-color: #e1e4e8;
}

body.light-mode .ibans-content {
    color: #1a1a1a;
}

body.light-mode .ibans-content a {
    color: #007bff;
}

body.light-mode .ibans-content a:hover {
    color: #0056b3;
}

body.light-mode .ibans-intro {
    color: #555555;
}

body.light-mode .ibans-list li {
    color: #1a1a1a;
    border-bottom-color: #e1e4e8;
}

body.light-mode .ibans-list li::before {
    background: #007bff;
}

body.light-mode .ibans-list.ibans-warning li::before {
    background: #007bff;
}

/* Buttons - Light Mode */
body.light-mode .ibans-btn,
body.light-mode .ibans-btn:visited {
    background-color: #007bff;
    color: #fff;
}

body.light-mode .ibans-btn:hover {
    background-color: #0056b3;
    color: #fff;
}

body.light-mode .ibans-btn-primary,
body.light-mode .ibans-btn-primary:visited {
    background-color: #007bff;
    color: #fff;
}

body.light-mode .ibans-btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Values - Light Mode */
body.light-mode .ibans-value-card {
    background: #f0f4f8;
    border-color: #e1e4e8;
}

body.light-mode .ibans-value-card:hover {
    border-color: #007bff;
}

body.light-mode .ibans-value-icon {
    color: #007bff;
}

body.light-mode .ibans-value-card h3 {
    color: #007bff;
}

body.light-mode .ibans-value-card p {
    color: #555555;
}

/* Services - Light Mode */
body.light-mode .ibans-service-card {
    background: #f0f4f8;
    border-color: #e1e4e8;
}

body.light-mode .ibans-service-card:hover {
    border-color: #007bff;
}

body.light-mode .ibans-service-icon {
    color: #007bff;
}

body.light-mode .ibans-service-title {
    color: #007bff;
}

body.light-mode .ibans-service-desc {
    color: #555555;
}

body.light-mode .ibans-tags li {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #e1e4e8;
}

/* CTA - Light Mode */
body.light-mode .ibans-cta {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-color: #007bff;
}

body.light-mode .ibans-cta h2 {
    color: #1a1a1a;
}

body.light-mode .ibans-cta p {
    color: #555555;
}

/* Process - Light Mode */
body.light-mode .ibans-process-step {
    background: #f0f4f8;
    border-color: #e1e4e8;
}

body.light-mode .ibans-process-number {
    color: #007bff;
}

body.light-mode .ibans-process-step h3 {
    color: #1a1a1a;
}

body.light-mode .ibans-process-step p {
    color: #555555;
}

/* Testimonials - Light Mode */
body.light-mode .ibans-testimonial {
    background: #f0f4f8;
    border-color: #e1e4e8;
}

body.light-mode .ibans-testimonial-text {
    color: #1a1a1a;
}

body.light-mode .ibans-testimonial-author {
    color: #007bff;
}

body.light-mode .ibans-testimonial-role {
    color: #555555;
}

body.light-mode .ibans-carousel-dot {
    background: #e1e4e8;
}

body.light-mode .ibans-carousel-dot.active {
    background: #007bff;
}

/* Social - Light Mode */
body.light-mode .ibans-contact-info {
    color: #555555;
}

body.light-mode .ibans-contact-info a {
    color: #007bff;
}

/* Note - Light Mode */
body.light-mode .ibans-note {
    background: #f0f4f8;
    border-left-color: #007bff;
}

body.light-mode .ibans-note p {
    color: #555555;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .ibans-title {
        font-size: 1.8rem;
    }
    
    .ibans-subtitle {
        font-size: 1rem;
    }
    
    .ibans-section {
        padding: 1.5rem;
    }
    
    .ibans-services-grid,
    .ibans-values-grid {
        grid-template-columns: 1fr;
    }
    
    .ibans-process-grid {
        grid-template-columns: 1fr;
    }
}
