/* ============================================
   Emir Çaka Bey Denizcilik İhtisas Üniversitesi
   Premium Corporate Theme - Maritime Navy/Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0a1628;
    --navy-light: #132040;
    --navy-mid: #1a2d5a;
    --gold: #c9a84c;
    --gold-light: #e8d49a;
    --gold-dark: #a68629;
    --white: #ffffff;
    --light: #f8f9fb;
    --gray: #6b7280;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    transition: .3s;
}

img {
    max-width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    border-bottom: 1px solid rgba(201, 168, 76, .3);
}

.top-bar a {
    color: rgba(255, 255, 255, .7);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar .social-links a {
    margin-left: 12px;
    font-size: 14px;
}

/* ===== NAVBAR ===== */
.main-navbar {
    background: #000000;
    backdrop-filter: blur(20px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    transition: .3s;
}

.main-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu a {
    display: block;
    padding: 18px 12px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: .3s;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .85) 0%, rgba(26, 45, 90, .6) 100%);
    z-index: 1;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 36px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s;
}

.btn-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .4);
    color: var(--navy);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: .3s;
    border: none;
}

.slider-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header .gold-line {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, .6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--gold);
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
    opacity: .3;
}

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PROGRAM CARDS ===== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: .3s;
    border: 1px solid #eee;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.program-card .card-icon {
    padding: 30px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--gold);
    font-size: 36px;
    text-align: center;
}

.program-card .card-body {
    padding: 24px;
}

.program-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.program-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.program-card .badge-degree {
    display: inline-block;
    background: rgba(201, 168, 76, .15);
    color: var(--gold-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* ===== NEWS CARDS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: .3s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 24px;
}

.news-card .date {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card h3 a {
    color: var(--navy);
}

.news-card h3 a:hover {
    color: var(--gold);
}

.news-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== ANNOUNCEMENTS ===== */
.announcement-list {
    max-width: 800px;
    margin: 0 auto;
}

.announcement-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.announcement-item:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--gold);
}

.announcement-item .date-box {
    text-align: center;
    min-width: 60px;
    padding: 10px;
    background: var(--gold);
    border-radius: 10px;
    color: var(--navy);
}

.announcement-item .date-box .day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.announcement-item .date-box .month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}

.announcement-item h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.announcement-item p {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    margin: 0;
}

.announcement-item.important {
    border-left: 4px solid var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer p {
    line-height: 1.7;
    font-size: 14px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.footer ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    font-size: 13px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: .3s;
}

.contact-info-card:hover {
    transform: translateX(4px);
}

.contact-info-card .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-control {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    transition: .3s;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.btn-gold-full {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
    width: 100%;
}

.btn-gold-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .4);
}

/* ===== PAGE HEADER ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--white));
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero .breadcrumb {
    justify-content: center;
    font-size: 14px;
}

.page-hero .breadcrumb a {
    color: var(--gold);
}

.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, .5);
}

.page-content {
    padding: 60px 0 100px;
}

.page-content .content-body {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 16px;
    color: #444;
}

.page-content .content-body h2 {
    color: var(--navy);
    margin: 30px 0 15px;
}

.page-content .content-body p {
    margin-bottom: 16px;
}

.page-portrait-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: .3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(10, 22, 40, .7));
    opacity: 0;
    transition: .3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .program-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-number {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* ---- Top Bar ---- */
    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }

    .top-bar .container {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 4px;
        text-align: center;
    }

    .top-bar .social-links {
        display: flex;
        gap: 10px;
    }

    .top-bar .social-links a {
        margin-left: 0;
    }

    /* ---- Navbar ---- */
    .main-navbar .container {
        padding: 0 12px;
    }

    .navbar-brand {
        padding: 8px 0;
    }

    .navbar-brand span {
        font-size: 11px !important;
    }

    .navbar-logo {
        height: 38px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        font-size: 13px;
    }

    .mobile-toggle {
        display: block;
    }

    /* ---- Hero Slider ---- */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .btn-hero {
        padding: 12px 24px;
        font-size: 13px;
    }

    .slider-dots {
        bottom: 20px;
    }

    /* ---- Sections General ---- */
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* ---- About ---- */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .about-feature .icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .about-feature span {
        font-size: 12px;
    }

    .about-image::before {
        display: none;
    }

    /* ---- Stats ---- */
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
        letter-spacing: .5px;
    }

    /* ---- Program Cards ---- */
    .program-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .program-card .card-icon {
        padding: 20px;
        font-size: 28px;
    }

    /* ---- News Cards ---- */
    .news-card img {
        height: 180px;
    }

    /* ---- Announcements ---- */
    .announcement-item {
        padding: 16px;
        gap: 14px;
    }

    .announcement-item h4 {
        font-size: 14px;
    }

    /* ---- Footer ---- */
    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-bottom {
        margin-top: 30px;
        font-size: 11px;
    }

    /* ---- Gallery ---- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ---- Contact Form ---- */
    .form-row-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-control {
        padding: 10px 14px;
        font-size: 14px;
        width: 100%;
    }

    /* ---- Page Hero ---- */
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero::after {
        height: 30px;
    }

    /* ---- Page Content ---- */
    .page-content {
        padding: 30px 0 60px;
    }

    .page-content .content-body {
        font-size: 14px;
        line-height: 1.8;
    }

    .page-portrait-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ---- Bank Cards ---- */
    .bank-cards-grid {
        grid-template-columns: 1fr;
    }

    .bank-card-header {
        padding: 18px 20px;
    }

    .bank-card-body {
        padding: 18px 20px;
    }

    .bank-card-header h3 {
        font-size: 17px;
    }

    .bank-info-row {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .iban-row {
        margin: 0 -20px;
        padding: 12px 20px;
    }

    .iban-value {
        font-size: 11px;
    }

    .bank-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .top-bar .container>div:first-child {
        font-size: 10px;
    }

    .hero-slider {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 11px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 16px;
    }

    .contact-info-card .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .contact-info-card h5 {
        font-size: 13px;
    }

    .contact-info-card p {
        font-size: 12px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .btn-gold-full {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* ===== BANK ACCOUNT CARDS ===== */
.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bank-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    border: 1px solid #eee;
    transition: .3s;
}

.bank-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.bank-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.bank-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(201, 168, 76, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.bank-card-header h3 {
    color: var(--white);
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    margin: 0;
}

.bank-card-body {
    padding: 24px 28px;
}

.bank-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.bank-info-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.bank-label i {
    color: var(--gold);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.bank-value {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    word-break: break-all;
}

.iban-row {
    background: rgba(201, 168, 76, .06);
    margin: 0 -28px;
    padding: 14px 28px;
    border-bottom: none;
    border-radius: 0;
}

.iban-value {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: .5px;
}

.copy-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s;
}

.copy-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.copy-btn.copied {
    background: #10b981;
    color: #fff;
}