/* contact page styles */
.copy-btn {
    min-height: 44px;
    padding-inline: 16px;
}
/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%), url('<%=siteurl%>/images/secili.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, transparent 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb-nav {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb li:not(:last-child)::after {
    content: '▸';
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb .active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Contact Section */
.contact-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 550px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    max-height: 550px;
    overflow-y: auto;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.info-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #ff5555);
    border-radius: 2px;
}

.info-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.info-text p {
    margin-bottom: 12px;
}

.info-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateX(8px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 6px 0;
}

.contact-details p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Bank Section */
.bank-section {
    margin-top: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #ff5555);
    border-radius: 2px;
}

.bank-accounts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.bank-account-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 5px solid var(--primary-color);
}

.bank-account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.bank-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    color: white;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bank-content {
    padding: 20px;
}

.bank-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.8;
    align-items: center;
    justify-content: space-between;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 140px;
    margin-right: 15px;
}

.bank-value {
    color: #555;
    word-break: break-word;
    flex: 1;
}

.bank-value strong {
    font-weight: 700;
    color: #333;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
    margin-left: 10px;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.contact-link-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.contact-link-phone:hover {
    color: #990000;
}

.contact-link-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.contact-link-email:hover {
    color: #990000;
}

/* Scrollbar Styling */
.contact-info::-webkit-scrollbar {
    width: 6px;
}

.contact-info::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.contact-info::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.contact-info::-webkit-scrollbar-thumb:hover {
    background: #990000;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        align-items: auto;
    }
    
    .map-container {
        height: 350px;
    }

    .contact-info {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 50px 0;
    }
    
    .info-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 300px;
    }

    .contact-item {
        padding: 14px;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-details h4 {
        font-size: 15px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .bank-row {
        flex-direction: column;
        font-size: 13px;
        align-items: flex-start;
    }

    .bank-label {
        min-width: auto;
        margin-bottom: 8px;
        margin-right: 0;
    }

    .bank-row > div {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap;
        gap: 8px;
    }

    .bank-row > div .bank-value {
        flex: 1;
        min-width: 150px;
    }

    .copy-btn {
        margin-left: 0;
        padding: 6px 12px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .info-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .info-text {
        font-size: 14px;
    }

    .bank-header {
        font-size: 15px;
        padding: 14px 16px;
    }

    .bank-content {
        padding: 16px;
    }

    .bank-row {
        padding: 8px 0;
        font-size: 12px;
    }
}

/* Mobile map owns an explicit viewport; percentage-height iframe can no longer collapse. */
@media (max-width: 991px) {
    .contact-content .map-container {
        position: relative !important;
        width: 100% !important;
        height: clamp(360px, 92vw, 460px) !important;
        min-height: 360px !important;
        max-height: 460px !important;
        overflow: hidden !important;
        border-radius: 22px !important;
        transform: none !important;
        contain: layout paint;
    }

    .contact-content .map-container iframe {
        position: absolute !important;
        z-index: 2;
        inset: 0 !important;
        display: block;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        border: 0 !important;
    }

    .contact-content .map-placeholder {
        inset: 0 !important;
        width: 100%;
        height: 100%;
    }

    .contact-content .map-container:hover {
        transform: none !important;
    }
}
